diff --git a/eng/mgmt/mgmtmetadata/eventgrid_resource-manager.txt b/eng/mgmt/mgmtmetadata/eventgrid_resource-manager.txt index 280b0cc2ccca..ff65bb2e2f11 100644 --- a/eng/mgmt/mgmtmetadata/eventgrid_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/eventgrid_resource-manager.txt @@ -3,12 +3,12 @@ AutoRest installed successfully. Commencing code generation Generating CSharp code Executing AutoRest command -cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/eventgrid/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\build2020\net1\azure-sdk-for-net\sdk -2020-06-03 00:08:27 UTC +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/eventgrid/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\github\azure-sdk-for-net\sdk +2021-02-12 19:51:40 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: e3e0fff3be9befda4fd2cc18ee355b88b024fac7 +Commit: a1eee0489c374782a934ec1f093abd16fa7718ca AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/AzSdk.RP.props b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/AzSdk.RP.props index 49307dfe0967..f1a1e06eb794 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/AzSdk.RP.props +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/AzSdk.RP.props @@ -1,7 +1,7 @@ - EventGrid_2020-06-01; + EventGrid_2020-10-15-preview; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/CHANGELOG.md b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/CHANGELOG.md index 993d2911b597..cc535b5af9bd 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/CHANGELOG.md +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/CHANGELOG.md @@ -1,5 +1,14 @@ # Release History +## 6.1.0 (2020-10) +- This release corresponds to api-version 2020-10-15-preview which includes the following new features: + * MSI for System Topics + * Azure Arc support Topics and Event Subscriptions + * Delivery Attributes for Event Subscriptions + * Ability to specify a TTL for StorageQueue destinations + * New AttributeFiltering Operators for Event Channels + * Exposing Source scopes on the TopicType resource + ## 6.0.0 (2020-06) - Add support to new GA service API version 2020-06-01. - The new GA'ed features include: diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/Microsoft.Azure.Management.EventGrid.sln b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/Microsoft.Azure.Management.EventGrid.sln index a42d79d44a9e..e7e229b31377 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/Microsoft.Azure.Management.EventGrid.sln +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/Microsoft.Azure.Management.EventGrid.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27130.2020 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31005.135 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Azure.Management.EventGrid", "src\Microsoft.Azure.Management.EventGrid.csproj", "{AE7D9821-F169-456D-80FE-95221111F7A3}" EndProject diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventChannelsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventChannelsOperations.cs new file mode 100644 index 000000000000..7e3c982312e8 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventChannelsOperations.cs @@ -0,0 +1,1098 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// EventChannelsOperations operations. + /// + internal partial class EventChannelsOperations : IServiceOperations, IEventChannelsOperations + { + /// + /// Initializes a new instance of the EventChannelsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal EventChannelsOperations(EventGridManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventGridManagementClient + /// + public EventGridManagementClient Client { get; private set; } + + /// + /// Get an event channel. + /// + /// + /// Get properties of an event channel. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string eventChannelName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (eventChannelName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventChannelName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("eventChannelName", eventChannelName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}/eventChannels/{eventChannelName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + _url = _url.Replace("{eventChannelName}", System.Uri.EscapeDataString(eventChannelName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create an event channel. + /// + /// + /// Asynchronously creates a new event channel with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// EventChannel information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string eventChannelName, EventChannel eventChannelInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (eventChannelName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventChannelName"); + } + if (eventChannelInfo == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventChannelInfo"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("eventChannelName", eventChannelName); + tracingParameters.Add("eventChannelInfo", eventChannelInfo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}/eventChannels/{eventChannelName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + _url = _url.Replace("{eventChannelName}", System.Uri.EscapeDataString(eventChannelName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(eventChannelInfo != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(eventChannelInfo, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete an event channel. + /// + /// + /// Delete existing event channel. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string eventChannelName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, eventChannelName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// List event channels. + /// + /// + /// List all the event channels in a partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByPartnerNamespaceWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByPartnerNamespace", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}/eventChannels").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete an event channel. + /// + /// + /// Delete existing event channel. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string eventChannelName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (eventChannelName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventChannelName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("eventChannelName", eventChannelName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}/eventChannels/{eventChannelName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + _url = _url.Replace("{eventChannelName}", System.Uri.EscapeDataString(eventChannelName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List event channels. + /// + /// + /// List all the event channels in a partner namespace. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByPartnerNamespaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByPartnerNamespaceNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventChannelsOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventChannelsOperationsExtensions.cs new file mode 100644 index 000000000000..69bb2a0d215e --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventChannelsOperationsExtensions.cs @@ -0,0 +1,347 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for EventChannelsOperations. + /// + public static partial class EventChannelsOperationsExtensions + { + /// + /// Get an event channel. + /// + /// + /// Get properties of an event channel. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + public static EventChannel Get(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string eventChannelName) + { + return operations.GetAsync(resourceGroupName, partnerNamespaceName, eventChannelName).GetAwaiter().GetResult(); + } + + /// + /// Get an event channel. + /// + /// + /// Get properties of an event channel. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string eventChannelName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, eventChannelName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create an event channel. + /// + /// + /// Asynchronously creates a new event channel with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// EventChannel information. + /// + public static EventChannel CreateOrUpdate(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string eventChannelName, EventChannel eventChannelInfo) + { + return operations.CreateOrUpdateAsync(resourceGroupName, partnerNamespaceName, eventChannelName, eventChannelInfo).GetAwaiter().GetResult(); + } + + /// + /// Create an event channel. + /// + /// + /// Asynchronously creates a new event channel with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// EventChannel information. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string eventChannelName, EventChannel eventChannelInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, eventChannelName, eventChannelInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete an event channel. + /// + /// + /// Delete existing event channel. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + public static void Delete(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string eventChannelName) + { + operations.DeleteAsync(resourceGroupName, partnerNamespaceName, eventChannelName).GetAwaiter().GetResult(); + } + + /// + /// Delete an event channel. + /// + /// + /// Delete existing event channel. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string eventChannelName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, eventChannelName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// List event channels. + /// + /// + /// List all the event channels in a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListByPartnerNamespace(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string filter = default(string), int? top = default(int?)) + { + return operations.ListByPartnerNamespaceAsync(resourceGroupName, partnerNamespaceName, filter, top).GetAwaiter().GetResult(); + } + + /// + /// List event channels. + /// + /// + /// List all the event channels in a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByPartnerNamespaceAsync(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByPartnerNamespaceWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete an event channel. + /// + /// + /// Delete existing event channel. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + public static void BeginDelete(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string eventChannelName) + { + operations.BeginDeleteAsync(resourceGroupName, partnerNamespaceName, eventChannelName).GetAwaiter().GetResult(); + } + + /// + /// Delete an event channel. + /// + /// + /// Delete existing event channel. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IEventChannelsOperations operations, string resourceGroupName, string partnerNamespaceName, string eventChannelName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, eventChannelName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// List event channels. + /// + /// + /// List all the event channels in a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByPartnerNamespaceNext(this IEventChannelsOperations operations, string nextPageLink) + { + return operations.ListByPartnerNamespaceNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List event channels. + /// + /// + /// List all the event channels in a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByPartnerNamespaceNextAsync(this IEventChannelsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByPartnerNamespaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventGridManagementClient.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventGridManagementClient.cs index 50170cac8a45..7626214c6b86 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventGridManagementClient.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventGridManagementClient.cs @@ -86,20 +86,45 @@ public partial class EventGridManagementClient : ServiceClient public virtual IDomainTopicsOperations DomainTopics { get; private set; } + /// + /// Gets the IEventChannelsOperations. + /// + public virtual IEventChannelsOperations EventChannels { get; private set; } + /// /// Gets the IEventSubscriptionsOperations. /// public virtual IEventSubscriptionsOperations EventSubscriptions { get; private set; } + /// + /// Gets the ISystemTopicEventSubscriptionsOperations. + /// + public virtual ISystemTopicEventSubscriptionsOperations SystemTopicEventSubscriptions { get; private set; } + + /// + /// Gets the IPartnerTopicEventSubscriptionsOperations. + /// + public virtual IPartnerTopicEventSubscriptionsOperations PartnerTopicEventSubscriptions { get; private set; } + /// /// Gets the IOperations. /// public virtual IOperations Operations { get; private set; } /// - /// Gets the ITopicsOperations. + /// Gets the IPartnerNamespacesOperations. /// - public virtual ITopicsOperations Topics { get; private set; } + public virtual IPartnerNamespacesOperations PartnerNamespaces { get; private set; } + + /// + /// Gets the IPartnerRegistrationsOperations. + /// + public virtual IPartnerRegistrationsOperations PartnerRegistrations { get; private set; } + + /// + /// Gets the IPartnerTopicsOperations. + /// + public virtual IPartnerTopicsOperations PartnerTopics { get; private set; } /// /// Gets the IPrivateEndpointConnectionsOperations. @@ -111,6 +136,21 @@ public partial class EventGridManagementClient : ServiceClient public virtual IPrivateLinkResourcesOperations PrivateLinkResources { get; private set; } + /// + /// Gets the ISystemTopicsOperations. + /// + public virtual ISystemTopicsOperations SystemTopics { get; private set; } + + /// + /// Gets the ITopicsOperations. + /// + public virtual ITopicsOperations Topics { get; private set; } + + /// + /// Gets the IExtensionTopicsOperations. + /// + public virtual IExtensionTopicsOperations ExtensionTopics { get; private set; } + /// /// Gets the ITopicTypesOperations. /// @@ -359,14 +399,22 @@ private void Initialize() { Domains = new DomainsOperations(this); DomainTopics = new DomainTopicsOperations(this); + EventChannels = new EventChannelsOperations(this); EventSubscriptions = new EventSubscriptionsOperations(this); + SystemTopicEventSubscriptions = new SystemTopicEventSubscriptionsOperations(this); + PartnerTopicEventSubscriptions = new PartnerTopicEventSubscriptionsOperations(this); Operations = new Operations(this); - Topics = new TopicsOperations(this); + PartnerNamespaces = new PartnerNamespacesOperations(this); + PartnerRegistrations = new PartnerRegistrationsOperations(this); + PartnerTopics = new PartnerTopicsOperations(this); PrivateEndpointConnections = new PrivateEndpointConnectionsOperations(this); PrivateLinkResources = new PrivateLinkResourcesOperations(this); + SystemTopics = new SystemTopicsOperations(this); + Topics = new TopicsOperations(this); + ExtensionTopics = new ExtensionTopicsOperations(this); TopicTypes = new TopicTypesOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2020-06-01"; + ApiVersion = "2020-10-15-preview"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; @@ -398,12 +446,14 @@ private void Initialize() }; SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("inputSchemaMappingType")); DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("inputSchemaMappingType")); - SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("endpointType")); - DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("endpointType")); SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("operatorType")); DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("operatorType")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("endpointType")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("endpointType")); SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("endpointType")); DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("endpointType")); + SerializationSettings.Converters.Add(new PolymorphicSerializeJsonConverter("type")); + DeserializationSettings.Converters.Add(new PolymorphicDeserializeJsonConverter("type")); CustomInitialize(); DeserializationSettings.Converters.Add(new TransformationJsonConverter()); DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventSubscriptionsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventSubscriptionsOperations.cs index c61670e7cbf5..87b0edcf05ee 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventSubscriptionsOperations.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventSubscriptionsOperations.cs @@ -2804,6 +2804,209 @@ internal EventSubscriptionsOperations(EventGridManagementClient client) return _result; } + /// + /// Get delivery attributes for an event subscription. + /// + /// + /// Get all delivery attributes for an event subscription. + /// + /// + /// The scope of the event subscription. The scope can be a subscription, or a + /// resource group, or a top level resource belonging to a resource provider + /// namespace, or an EventGrid topic. For example, use + /// '/subscriptions/{subscriptionId}/' for a subscription, + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a + /// resource group, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' + /// for a resource, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}' + /// for an EventGrid topic. + /// + /// + /// Name of the event subscription. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetDeliveryAttributesWithHttpMessagesAsync(string scope, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (scope == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("scope", scope); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetDeliveryAttributes", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.EventGrid/eventSubscriptions/{eventSubscriptionName}/getDeliveryAttributes").ToString(); + _url = _url.Replace("{scope}", scope); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + /// /// Create or update an event subscription. /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventSubscriptionsOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventSubscriptionsOperationsExtensions.cs index cbb1bf86c4d0..502da598df1d 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventSubscriptionsOperationsExtensions.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/EventSubscriptionsOperationsExtensions.cs @@ -1122,6 +1122,70 @@ public static EventSubscriptionFullUrl GetFullUrl(this IEventSubscriptionsOperat } } + /// + /// Get delivery attributes for an event subscription. + /// + /// + /// Get all delivery attributes for an event subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of the event subscription. The scope can be a subscription, or a + /// resource group, or a top level resource belonging to a resource provider + /// namespace, or an EventGrid topic. For example, use + /// '/subscriptions/{subscriptionId}/' for a subscription, + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a + /// resource group, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' + /// for a resource, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}' + /// for an EventGrid topic. + /// + /// + /// Name of the event subscription. + /// + public static DeliveryAttributeListResult GetDeliveryAttributes(this IEventSubscriptionsOperations operations, string scope, string eventSubscriptionName) + { + return operations.GetDeliveryAttributesAsync(scope, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Get delivery attributes for an event subscription. + /// + /// + /// Get all delivery attributes for an event subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The scope of the event subscription. The scope can be a subscription, or a + /// resource group, or a top level resource belonging to a resource provider + /// namespace, or an EventGrid topic. For example, use + /// '/subscriptions/{subscriptionId}/' for a subscription, + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a + /// resource group, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' + /// for a resource, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}' + /// for an EventGrid topic. + /// + /// + /// Name of the event subscription. + /// + /// + /// The cancellation token. + /// + public static async Task GetDeliveryAttributesAsync(this IEventSubscriptionsOperations operations, string scope, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeliveryAttributesWithHttpMessagesAsync(scope, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Create or update an event subscription. /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ExtensionTopicsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ExtensionTopicsOperations.cs new file mode 100644 index 000000000000..30b0c63530ff --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ExtensionTopicsOperations.cs @@ -0,0 +1,246 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ExtensionTopicsOperations operations. + /// + internal partial class ExtensionTopicsOperations : IServiceOperations, IExtensionTopicsOperations + { + /// + /// Initializes a new instance of the ExtensionTopicsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ExtensionTopicsOperations(EventGridManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventGridManagementClient + /// + public EventGridManagementClient Client { get; private set; } + + /// + /// Get properties of an extension topic. + /// + /// + /// Get the properties of an extension topic. + /// + /// + /// The identifier of the resource to which extension topic is queried. The + /// scope can be a subscription, or a resource group, or a top level resource + /// belonging to a resource provider namespace. For example, use + /// '/subscriptions/{subscriptionId}/' for a subscription, + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a + /// resource group, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' + /// for Azure resource. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string scope, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (scope == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "scope"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("scope", scope); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "{scope}/providers/Microsoft.EventGrid/extensionTopics/default").ToString(); + _url = _url.Replace("{scope}", System.Uri.EscapeDataString(scope)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ExtensionTopicsOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ExtensionTopicsOperationsExtensions.cs new file mode 100644 index 000000000000..16616d14a956 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ExtensionTopicsOperationsExtensions.cs @@ -0,0 +1,79 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for ExtensionTopicsOperations. + /// + public static partial class ExtensionTopicsOperationsExtensions + { + /// + /// Get properties of an extension topic. + /// + /// + /// Get the properties of an extension topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource to which extension topic is queried. The + /// scope can be a subscription, or a resource group, or a top level resource + /// belonging to a resource provider namespace. For example, use + /// '/subscriptions/{subscriptionId}/' for a subscription, + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a + /// resource group, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' + /// for Azure resource. + /// + public static ExtensionTopic Get(this IExtensionTopicsOperations operations, string scope) + { + return operations.GetAsync(scope).GetAwaiter().GetResult(); + } + + /// + /// Get properties of an extension topic. + /// + /// + /// Get the properties of an extension topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The identifier of the resource to which extension topic is queried. The + /// scope can be a subscription, or a resource group, or a top level resource + /// belonging to a resource provider namespace. For example, use + /// '/subscriptions/{subscriptionId}/' for a subscription, + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a + /// resource group, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' + /// for Azure resource. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IExtensionTopicsOperations operations, string scope, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(scope, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventChannelsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventChannelsOperations.cs new file mode 100644 index 000000000000..e15cbd6411c7 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventChannelsOperations.cs @@ -0,0 +1,218 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// EventChannelsOperations operations. + /// + public partial interface IEventChannelsOperations + { + /// + /// Get an event channel. + /// + /// + /// Get properties of an event channel. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string eventChannelName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create an event channel. + /// + /// + /// Asynchronously creates a new event channel with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// EventChannel information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string eventChannelName, EventChannel eventChannelInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete an event channel. + /// + /// + /// Delete existing event channel. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string eventChannelName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List event channels. + /// + /// + /// List all the event channels in a partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByPartnerNamespaceWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete an event channel. + /// + /// + /// Delete existing event channel. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Name of the event channel. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string eventChannelName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List event channels. + /// + /// + /// List all the event channels in a partner namespace. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByPartnerNamespaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventGridManagementClient.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventGridManagementClient.cs index b45a7ced954a..e36aca2611ad 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventGridManagementClient.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventGridManagementClient.cs @@ -81,20 +81,45 @@ public partial interface IEventGridManagementClient : System.IDisposable /// IDomainTopicsOperations DomainTopics { get; } + /// + /// Gets the IEventChannelsOperations. + /// + IEventChannelsOperations EventChannels { get; } + /// /// Gets the IEventSubscriptionsOperations. /// IEventSubscriptionsOperations EventSubscriptions { get; } + /// + /// Gets the ISystemTopicEventSubscriptionsOperations. + /// + ISystemTopicEventSubscriptionsOperations SystemTopicEventSubscriptions { get; } + + /// + /// Gets the IPartnerTopicEventSubscriptionsOperations. + /// + IPartnerTopicEventSubscriptionsOperations PartnerTopicEventSubscriptions { get; } + /// /// Gets the IOperations. /// IOperations Operations { get; } /// - /// Gets the ITopicsOperations. + /// Gets the IPartnerNamespacesOperations. /// - ITopicsOperations Topics { get; } + IPartnerNamespacesOperations PartnerNamespaces { get; } + + /// + /// Gets the IPartnerRegistrationsOperations. + /// + IPartnerRegistrationsOperations PartnerRegistrations { get; } + + /// + /// Gets the IPartnerTopicsOperations. + /// + IPartnerTopicsOperations PartnerTopics { get; } /// /// Gets the IPrivateEndpointConnectionsOperations. @@ -106,6 +131,21 @@ public partial interface IEventGridManagementClient : System.IDisposable /// IPrivateLinkResourcesOperations PrivateLinkResources { get; } + /// + /// Gets the ISystemTopicsOperations. + /// + ISystemTopicsOperations SystemTopics { get; } + + /// + /// Gets the ITopicsOperations. + /// + ITopicsOperations Topics { get; } + + /// + /// Gets the IExtensionTopicsOperations. + /// + IExtensionTopicsOperations ExtensionTopics { get; } + /// /// Gets the ITopicTypesOperations. /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventSubscriptionsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventSubscriptionsOperations.cs index 7aa35fafa57a..16d48daec43a 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventSubscriptionsOperations.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IEventSubscriptionsOperations.cs @@ -674,6 +674,44 @@ public partial interface IEventSubscriptionsOperations /// Task>> ListByDomainTopicWithHttpMessagesAsync(string resourceGroupName, string domainName, string topicName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Get delivery attributes for an event subscription. + /// + /// + /// Get all delivery attributes for an event subscription. + /// + /// + /// The scope of the event subscription. The scope can be a + /// subscription, or a resource group, or a top level resource + /// belonging to a resource provider namespace, or an EventGrid topic. + /// For example, use '/subscriptions/{subscriptionId}/' for a + /// subscription, + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' + /// for a resource group, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' + /// for a resource, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}' + /// for an EventGrid topic. + /// + /// + /// Name of the event subscription. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetDeliveryAttributesWithHttpMessagesAsync(string scope, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Create or update an event subscription. /// /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IExtensionTopicsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IExtensionTopicsOperations.cs new file mode 100644 index 000000000000..c6791881310b --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IExtensionTopicsOperations.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ExtensionTopicsOperations operations. + /// + public partial interface IExtensionTopicsOperations + { + /// + /// Get properties of an extension topic. + /// + /// + /// Get the properties of an extension topic. + /// + /// + /// The identifier of the resource to which extension topic is queried. + /// The scope can be a subscription, or a resource group, or a top + /// level resource belonging to a resource provider namespace. For + /// example, use '/subscriptions/{subscriptionId}/' for a subscription, + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' + /// for a resource group, and + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' + /// for Azure resource. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string scope, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerNamespacesOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerNamespacesOperations.cs new file mode 100644 index 000000000000..eb9e3312cbb2 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerNamespacesOperations.cs @@ -0,0 +1,421 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PartnerNamespacesOperations operations. + /// + public partial interface IPartnerNamespacesOperations + { + /// + /// Get a partner namespace. + /// + /// + /// Get properties of a partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create a partner namespace. + /// + /// + /// Asynchronously creates a new partner namespace with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// PartnerNamespace information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, PartnerNamespace partnerNamespaceInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a partner namespace. + /// + /// + /// Delete existing partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a partner namespace. + /// + /// + /// Asynchronously updates a partner namespace with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Tags of the partner namespace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner namespaces under an Azure subscription. + /// + /// + /// List all the partner namespaces under an Azure subscription. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionWithHttpMessagesAsync(string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner namespaces under a resource group. + /// + /// + /// List all the partner namespaces under a resource group. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List keys for a partner namespace. + /// + /// + /// List the two keys used to publish to a partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ListSharedAccessKeysWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Regenerate key for a partner namespace. + /// + /// + /// Regenerate a shared access key for a partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Key name to regenerate (key1 or key2). + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create a partner namespace. + /// + /// + /// Asynchronously creates a new partner namespace with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// PartnerNamespace information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, PartnerNamespace partnerNamespaceInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a partner namespace. + /// + /// + /// Delete existing partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a partner namespace. + /// + /// + /// Asynchronously updates a partner namespace with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Tags of the partner namespace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner namespaces under an Azure subscription. + /// + /// + /// List all the partner namespaces under an Azure subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner namespaces under a resource group. + /// + /// + /// List all the partner namespaces under a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerRegistrationsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerRegistrationsOperations.cs new file mode 100644 index 000000000000..f813ded402d3 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerRegistrationsOperations.cs @@ -0,0 +1,293 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PartnerRegistrationsOperations operations. + /// + public partial interface IPartnerRegistrationsOperations + { + /// + /// Get a partner registration. + /// + /// + /// Gets a partner registration with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerRegistrationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create a partner registration. + /// + /// + /// Creates a new partner registration with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// PartnerRegistration information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerRegistrationName, PartnerRegistration partnerRegistrationInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a partner registration. + /// + /// + /// Deletes a partner registration with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerRegistrationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a partner registration. + /// + /// + /// Updates a partner registration with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// Partner registration update information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string partnerRegistrationName, PartnerRegistrationUpdateParameters partnerRegistrationUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner registrations under an Azure subscription. + /// + /// + /// List all the partner registrations under an Azure subscription. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionWithHttpMessagesAsync(string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner registrations under a resource group. + /// + /// + /// List all the partner registrations under a resource group. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List all available partners registrations. + /// + /// + /// List all partners registrations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner registrations under an Azure subscription. + /// + /// + /// List all the partner registrations under an Azure subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner registrations under a resource group. + /// + /// + /// List all the partner registrations under a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerTopicEventSubscriptionsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerTopicEventSubscriptionsOperations.cs new file mode 100644 index 000000000000..e5baba1ca7ea --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerTopicEventSubscriptionsOperations.cs @@ -0,0 +1,408 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PartnerTopicEventSubscriptionsOperations operations. + /// + public partial interface IPartnerTopicEventSubscriptionsOperations + { + /// + /// Get an event subscription of a partner topic. + /// + /// + /// Get an event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be found. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update an event subscription of a partner topic. + /// + /// + /// Asynchronously creates or updates an event subscription of a + /// partner topic with the specified parameters. Existing event + /// subscriptions will be updated with this API. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update event subscription of a partner topic. + /// + /// + /// Update event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get full URL of an event subscription of a partner topic. + /// + /// + /// Get the full endpoint URL for an event subscription of a partner + /// topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetFullUrlWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List event subscriptions of a partner topic. + /// + /// + /// List event subscriptions that belong to a specific partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByPartnerTopicWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get delivery attributes for an event subscription of a partner + /// topic. + /// + /// + /// Get all delivery attributes for an event subscription of a partner + /// topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetDeliveryAttributesWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update an event subscription of a partner topic. + /// + /// + /// Asynchronously creates or updates an event subscription of a + /// partner topic with the specified parameters. Existing event + /// subscriptions will be updated with this API. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update event subscription of a partner topic. + /// + /// + /// Update event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List event subscriptions of a partner topic. + /// + /// + /// List event subscriptions that belong to a specific partner topic. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByPartnerTopicNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerTopicsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerTopicsOperations.cs new file mode 100644 index 000000000000..f4c8f3eddaf8 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/IPartnerTopicsOperations.cs @@ -0,0 +1,322 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PartnerTopicsOperations operations. + /// + public partial interface IPartnerTopicsOperations + { + /// + /// Get a partner topic. + /// + /// + /// Get properties of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a partner topic. + /// + /// + /// Delete existing partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a partner topic. + /// + /// + /// Asynchronously updates a partner topic with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Tags of the partner topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner topics under an Azure subscription. + /// + /// + /// List all the partner topics under an Azure subscription. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionWithHttpMessagesAsync(string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner topics under a resource group. + /// + /// + /// List all the partner topics under a resource group. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Activate a partner topic. + /// + /// + /// Activate a newly created partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ActivateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deactivate a partner topic. + /// + /// + /// Deactivate specific partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> DeactivateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a partner topic. + /// + /// + /// Delete existing partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner topics under an Azure subscription. + /// + /// + /// List all the partner topics under an Azure subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List partner topics under a resource group. + /// + /// + /// List all the partner topics under a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ISystemTopicEventSubscriptionsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ISystemTopicEventSubscriptionsOperations.cs new file mode 100644 index 000000000000..f4610328eca7 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ISystemTopicEventSubscriptionsOperations.cs @@ -0,0 +1,406 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SystemTopicEventSubscriptionsOperations operations. + /// + public partial interface ISystemTopicEventSubscriptionsOperations + { + /// + /// Get an event subscription of a system topic. + /// + /// + /// Get an event subscription. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update an event subscription for a system topic. + /// + /// + /// Asynchronously creates or updates an event subscription with the + /// specified parameters. Existing event subscriptions will be updated + /// with this API. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete an event subscription of a system topic. + /// + /// + /// Delete an event subscription of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update event subscription of a system topic. + /// + /// + /// Update event subscription of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get full URL of an event subscription of a system topic + /// + /// + /// Get the full endpoint URL for an event subscription of a system + /// topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetFullUrlWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List event subscriptions of a system topic. + /// + /// + /// List event subscriptions that belong to a specific system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySystemTopicWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get delivery attributes for an event subscription. + /// + /// + /// Get all delivery attributes for an event subscription. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetDeliveryAttributesWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update an event subscription for a system topic. + /// + /// + /// Asynchronously creates or updates an event subscription with the + /// specified parameters. Existing event subscriptions will be updated + /// with this API. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete an event subscription of a system topic. + /// + /// + /// Delete an event subscription of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update event subscription of a system topic. + /// + /// + /// Update event subscription of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription + /// names must be between 3 and 100 characters in length and use + /// alphanumeric letters only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List event subscriptions of a system topic. + /// + /// + /// List event subscriptions that belong to a specific system topic. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySystemTopicNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ISystemTopicsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ISystemTopicsOperations.cs new file mode 100644 index 000000000000..cb157fe68a18 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ISystemTopicsOperations.cs @@ -0,0 +1,362 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SystemTopicsOperations operations. + /// + public partial interface ISystemTopicsOperations + { + /// + /// Get a system topic. + /// + /// + /// Get properties of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> GetWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create a system topic. + /// + /// + /// Asynchronously creates a new system topic with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// System Topic information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, SystemTopic systemTopicInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a system topic. + /// + /// + /// Delete existing system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a system topic. + /// + /// + /// Asynchronously updates a system topic with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// SystemTopic update information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, SystemTopicUpdateParameters systemTopicUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List system topics under an Azure subscription. + /// + /// + /// List all the system topics under an Azure subscription. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionWithHttpMessagesAsync(string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List system topics under a resource group. + /// + /// + /// List all the system topics under a resource group. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. + /// Filtering is permitted on the 'name' property only and with limited + /// number of OData operations. These operations are: the 'contains' + /// function as well as the following logical operations: not, and, or, + /// eq (for equal), and ne (for not equal). No arithmetic operations + /// are supported. The following is a valid filter example: + /// $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. The + /// following is not a valid filter example: $filter=location eq + /// 'westus'. + /// + /// + /// The number of results to return per page for the list operation. + /// Valid range for top parameter is 1 to 100. If not specified, the + /// default number of results to be returned is 20 items per page. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create a system topic. + /// + /// + /// Asynchronously creates a new system topic with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// System Topic information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, SystemTopic systemTopicInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete a system topic. + /// + /// + /// Delete existing system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Update a system topic. + /// + /// + /// Asynchronously updates a system topic with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// SystemTopic update information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, SystemTopicUpdateParameters systemTopicUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List system topics under an Azure subscription. + /// + /// + /// List all the system topics under an Azure subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List system topics under a resource group. + /// + /// + /// List all the system topics under a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ITopicsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ITopicsOperations.cs index 7370dffe508b..9e0fe7764146 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ITopicsOperations.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/ITopicsOperations.cs @@ -398,6 +398,37 @@ public partial interface ITopicsOperations /// Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string topicName, TopicUpdateParameters topicUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Regenerate key for a topic. + /// + /// + /// Regenerate a shared access key for a topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the topic. + /// + /// + /// Key name to regenerate key1 or key2 + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> BeginRegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string topicName, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// List topics under an Azure subscription. /// /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AdvancedFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AdvancedFilter.cs index c2fe81ab1c01..371d80a647b3 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AdvancedFilter.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AdvancedFilter.cs @@ -21,7 +21,6 @@ namespace Microsoft.Azure.Management.EventGrid.Models /// StringEqualsAdvancedFilter etc. depending on the type of the key based /// on which you want to filter. /// - [Newtonsoft.Json.JsonObject("AdvancedFilter")] public partial class AdvancedFilter { /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AzureFunctionEventSubscriptionDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AzureFunctionEventSubscriptionDestination.cs index f4565316b35f..a5bd1835bdfd 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AzureFunctionEventSubscriptionDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AzureFunctionEventSubscriptionDestination.cs @@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.EventGrid.Models using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -43,11 +45,14 @@ public AzureFunctionEventSubscriptionDestination() /// batch. /// Preferred batch size in /// Kilobytes. - public AzureFunctionEventSubscriptionDestination(string resourceId = default(string), int? maxEventsPerBatch = default(int?), int? preferredBatchSizeInKilobytes = default(int?)) + /// Delivery attribute + /// details. + public AzureFunctionEventSubscriptionDestination(string resourceId = default(string), int? maxEventsPerBatch = default(int?), int? preferredBatchSizeInKilobytes = default(int?), IList deliveryAttributeMappings = default(IList)) { ResourceId = resourceId; MaxEventsPerBatch = maxEventsPerBatch; PreferredBatchSizeInKilobytes = preferredBatchSizeInKilobytes; + DeliveryAttributeMappings = deliveryAttributeMappings; CustomInit(); } @@ -75,5 +80,11 @@ public AzureFunctionEventSubscriptionDestination() [JsonProperty(PropertyName = "properties.preferredBatchSizeInKilobytes")] public int? PreferredBatchSizeInKilobytes { get; set; } + /// + /// Gets or sets delivery attribute details. + /// + [JsonProperty(PropertyName = "properties.deliveryAttributeMappings")] + public IList DeliveryAttributeMappings { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/CreatedByType.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/CreatedByType.cs new file mode 100644 index 000000000000..c319250ec5c5 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/CreatedByType.cs @@ -0,0 +1,24 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for CreatedByType. + /// + public static class CreatedByType + { + public const string User = "User"; + public const string Application = "Application"; + public const string ManagedIdentity = "ManagedIdentity"; + public const string Key = "Key"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterDestination.cs index e6ae3ec7e7e4..ba2339e8ee02 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterDestination.cs @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.EventGrid.Models { - using Newtonsoft.Json; using System.Linq; /// @@ -20,7 +19,6 @@ namespace Microsoft.Azure.Management.EventGrid.Models /// a derived class. Currently, StorageBlobDeadLetterDestination is the /// only class that derives from this class. /// - [Newtonsoft.Json.JsonObject("DeadLetterDestination")] public partial class DeadLetterDestination { /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterWithResourceIdentity.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterWithResourceIdentity.cs new file mode 100644 index 000000000000..eeb484d8e462 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterWithResourceIdentity.cs @@ -0,0 +1,71 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Information about the deadletter destination with resource identity. + /// + public partial class DeadLetterWithResourceIdentity + { + /// + /// Initializes a new instance of the DeadLetterWithResourceIdentity + /// class. + /// + public DeadLetterWithResourceIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DeadLetterWithResourceIdentity + /// class. + /// + /// The identity to use when dead-lettering + /// events. + /// Information about the + /// destination where events have to be delivered for the event + /// subscription. + /// Uses the managed identity setup on the parent resource (namely, + /// topic or domain) to acquire the authentication tokens being used + /// during delivery / dead-lettering. + public DeadLetterWithResourceIdentity(EventSubscriptionIdentity identity = default(EventSubscriptionIdentity), DeadLetterDestination deadLetterDestination = default(DeadLetterDestination)) + { + Identity = identity; + DeadLetterDestination = deadLetterDestination; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the identity to use when dead-lettering events. + /// + [JsonProperty(PropertyName = "identity")] + public EventSubscriptionIdentity Identity { get; set; } + + /// + /// Gets or sets information about the destination where events have to + /// be delivered for the event subscription. + /// Uses the managed identity setup on the parent resource (namely, + /// topic or domain) to acquire the authentication tokens being used + /// during delivery / dead-lettering. + /// + [JsonProperty(PropertyName = "deadLetterDestination")] + public DeadLetterDestination DeadLetterDestination { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeliveryAttributeListResult.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeliveryAttributeListResult.cs new file mode 100644 index 000000000000..fdbad339b338 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeliveryAttributeListResult.cs @@ -0,0 +1,56 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Result of the Get delivery attributes operation. + /// + public partial class DeliveryAttributeListResult + { + /// + /// Initializes a new instance of the DeliveryAttributeListResult + /// class. + /// + public DeliveryAttributeListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DeliveryAttributeListResult + /// class. + /// + /// A collection of + /// DeliveryAttributeMapping + public DeliveryAttributeListResult(IList value = default(IList)) + { + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a collection of DeliveryAttributeMapping + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeliveryAttributeMapping.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeliveryAttributeMapping.cs new file mode 100644 index 000000000000..2ee4e40e7bb6 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeliveryAttributeMapping.cs @@ -0,0 +1,52 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Delivery attribute mapping details. + /// + public partial class DeliveryAttributeMapping + { + /// + /// Initializes a new instance of the DeliveryAttributeMapping class. + /// + public DeliveryAttributeMapping() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DeliveryAttributeMapping class. + /// + /// Name of the delivery attribute or + /// header. + public DeliveryAttributeMapping(string name = default(string)) + { + Name = name; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets name of the delivery attribute or header. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeliveryWithResourceIdentity.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeliveryWithResourceIdentity.cs new file mode 100644 index 000000000000..54d916608d5f --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeliveryWithResourceIdentity.cs @@ -0,0 +1,69 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Information about the delivery for an event subscription with resource + /// identity. + /// + public partial class DeliveryWithResourceIdentity + { + /// + /// Initializes a new instance of the DeliveryWithResourceIdentity + /// class. + /// + public DeliveryWithResourceIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DeliveryWithResourceIdentity + /// class. + /// + /// The identity to use when delivering + /// events. + /// Information about the destination where + /// events have to be delivered for the event subscription. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. + public DeliveryWithResourceIdentity(EventSubscriptionIdentity identity = default(EventSubscriptionIdentity), EventSubscriptionDestination destination = default(EventSubscriptionDestination)) + { + Identity = identity; + Destination = destination; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the identity to use when delivering events. + /// + [JsonProperty(PropertyName = "identity")] + public EventSubscriptionIdentity Identity { get; set; } + + /// + /// Gets or sets information about the destination where events have to + /// be delivered for the event subscription. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. + /// + [JsonProperty(PropertyName = "destination")] + public EventSubscriptionDestination Destination { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Domain.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Domain.cs index 47b3e7468044..585a500079b7 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Domain.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Domain.cs @@ -63,7 +63,10 @@ public Domain() /// This can be used to restrict traffic /// from specific IPs instead of all IPs. Note: These are considered /// only if PublicNetworkAccess is enabled. - public Domain(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList privateEndpointConnections = default(IList), string provisioningState = default(string), string endpoint = default(string), string inputSchema = default(string), InputSchemaMapping inputSchemaMapping = default(InputSchemaMapping), string metricResourceId = default(string), string publicNetworkAccess = default(string), IList inboundIpRules = default(IList)) + /// The Sku pricing tier for the domain. + /// Identity information for the + /// resource. + public Domain(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList privateEndpointConnections = default(IList), string provisioningState = default(string), string endpoint = default(string), string inputSchema = default(string), InputSchemaMapping inputSchemaMapping = default(InputSchemaMapping), string metricResourceId = default(string), string publicNetworkAccess = default(string), IList inboundIpRules = default(IList), ResourceSku sku = default(ResourceSku), IdentityInfo identity = default(IdentityInfo)) : base(location, id, name, type, tags) { PrivateEndpointConnections = privateEndpointConnections; @@ -74,6 +77,8 @@ public Domain() MetricResourceId = metricResourceId; PublicNetworkAccess = publicNetworkAccess; InboundIpRules = inboundIpRules; + Sku = sku; + Identity = identity; CustomInit(); } @@ -143,6 +148,18 @@ public Domain() [JsonProperty(PropertyName = "properties.inboundIpRules")] public IList InboundIpRules { get; set; } + /// + /// Gets or sets the Sku pricing tier for the domain. + /// + [JsonProperty(PropertyName = "sku")] + public ResourceSku Sku { get; set; } + + /// + /// Gets or sets identity information for the resource. + /// + [JsonProperty(PropertyName = "identity")] + public IdentityInfo Identity { get; set; } + /// /// Validate the object. /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DomainUpdateParameters.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DomainUpdateParameters.cs index 3ba6fef56bb8..646ddc11716b 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DomainUpdateParameters.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DomainUpdateParameters.cs @@ -43,11 +43,16 @@ public DomainUpdateParameters() /// This can be used to restrict traffic /// from specific IPs instead of all IPs. Note: These are considered /// only if PublicNetworkAccess is enabled. - public DomainUpdateParameters(IDictionary tags = default(IDictionary), string publicNetworkAccess = default(string), IList inboundIpRules = default(IList)) + /// Identity information for the + /// resource. + /// The Sku pricing tier for the domain. + public DomainUpdateParameters(IDictionary tags = default(IDictionary), string publicNetworkAccess = default(string), IList inboundIpRules = default(IList), IdentityInfo identity = default(IdentityInfo), ResourceSku sku = default(ResourceSku)) { Tags = tags; PublicNetworkAccess = publicNetworkAccess; InboundIpRules = inboundIpRules; + Identity = identity; + Sku = sku; CustomInit(); } @@ -81,5 +86,17 @@ public DomainUpdateParameters() [JsonProperty(PropertyName = "properties.inboundIpRules")] public IList InboundIpRules { get; set; } + /// + /// Gets or sets identity information for the resource. + /// + [JsonProperty(PropertyName = "identity")] + public IdentityInfo Identity { get; set; } + + /// + /// Gets or sets the Sku pricing tier for the domain. + /// + [JsonProperty(PropertyName = "sku")] + public ResourceSku Sku { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DynamicDeliveryAttributeMapping.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DynamicDeliveryAttributeMapping.cs new file mode 100644 index 000000000000..895464b8b901 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DynamicDeliveryAttributeMapping.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Dynamic delivery attribute mapping details. + /// + [Newtonsoft.Json.JsonObject("Dynamic")] + [Rest.Serialization.JsonTransformation] + public partial class DynamicDeliveryAttributeMapping : DeliveryAttributeMapping + { + /// + /// Initializes a new instance of the DynamicDeliveryAttributeMapping + /// class. + /// + public DynamicDeliveryAttributeMapping() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the DynamicDeliveryAttributeMapping + /// class. + /// + /// Name of the delivery attribute or + /// header. + /// JSON path in the event which contains + /// attribute value. + public DynamicDeliveryAttributeMapping(string name = default(string), string sourceField = default(string)) + : base(name) + { + SourceField = sourceField; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets JSON path in the event which contains attribute value. + /// + [JsonProperty(PropertyName = "properties.sourceField")] + public string SourceField { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannel.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannel.cs new file mode 100644 index 000000000000..8d27a3aa7bb3 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannel.cs @@ -0,0 +1,143 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Event Channel. + /// + [Rest.Serialization.JsonTransformation] + public partial class EventChannel : Resource + { + /// + /// Initializes a new instance of the EventChannel class. + /// + public EventChannel() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EventChannel class. + /// + /// Fully qualified identifier of the + /// resource. + /// Name of the resource. + /// Type of the resource. + /// Source of the event channel. This represents a + /// unique resource in the partner's resource model. + /// Represents the destination of an event + /// channel. + /// Provisioning state of the event + /// channel. Possible values include: 'Creating', 'Updating', + /// 'Deleting', 'Succeeded', 'Canceled', 'Failed' + /// The readiness state of the + /// corresponding partner topic. Possible values include: + /// 'NotActivatedByUserYet', 'ActivatedByUser', 'DeactivatedByUser', + /// 'DeletedByUser' + /// Expiration time of + /// the event channel. If this timer expires while the corresponding + /// partner topic is never activated, + /// the event channel and corresponding partner topic are + /// deleted. + /// Information about the filter for the event + /// channel. + /// Friendly description + /// about the topic. This can be set by the publisher/partner to show + /// custom description for the customer partner topic. + /// This will be helpful to remove any ambiguity of the origin of + /// creation of the partner topic for the customer. + /// The system metadata relating to this + /// resource. + public EventChannel(string id = default(string), string name = default(string), string type = default(string), EventChannelSource source = default(EventChannelSource), EventChannelDestination destination = default(EventChannelDestination), string provisioningState = default(string), string partnerTopicReadinessState = default(string), System.DateTime? expirationTimeIfNotActivatedUtc = default(System.DateTime?), EventChannelFilter filter = default(EventChannelFilter), string partnerTopicFriendlyDescription = default(string), SystemData systemData = default(SystemData)) + : base(id, name, type) + { + Source = source; + Destination = destination; + ProvisioningState = provisioningState; + PartnerTopicReadinessState = partnerTopicReadinessState; + ExpirationTimeIfNotActivatedUtc = expirationTimeIfNotActivatedUtc; + Filter = filter; + PartnerTopicFriendlyDescription = partnerTopicFriendlyDescription; + SystemData = systemData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets source of the event channel. This represents a unique + /// resource in the partner's resource model. + /// + [JsonProperty(PropertyName = "properties.source")] + public EventChannelSource Source { get; set; } + + /// + /// Gets or sets represents the destination of an event channel. + /// + [JsonProperty(PropertyName = "properties.destination")] + public EventChannelDestination Destination { get; set; } + + /// + /// Gets provisioning state of the event channel. Possible values + /// include: 'Creating', 'Updating', 'Deleting', 'Succeeded', + /// 'Canceled', 'Failed' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets the readiness state of the corresponding partner topic. + /// Possible values include: 'NotActivatedByUserYet', + /// 'ActivatedByUser', 'DeactivatedByUser', 'DeletedByUser' + /// + [JsonProperty(PropertyName = "properties.partnerTopicReadinessState")] + public string PartnerTopicReadinessState { get; private set; } + + /// + /// Gets or sets expiration time of the event channel. If this timer + /// expires while the corresponding partner topic is never activated, + /// the event channel and corresponding partner topic are deleted. + /// + [JsonProperty(PropertyName = "properties.expirationTimeIfNotActivatedUtc")] + public System.DateTime? ExpirationTimeIfNotActivatedUtc { get; set; } + + /// + /// Gets or sets information about the filter for the event channel. + /// + [JsonProperty(PropertyName = "properties.filter")] + public EventChannelFilter Filter { get; set; } + + /// + /// Gets or sets friendly description about the topic. This can be set + /// by the publisher/partner to show custom description for the + /// customer partner topic. + /// This will be helpful to remove any ambiguity of the origin of + /// creation of the partner topic for the customer. + /// + [JsonProperty(PropertyName = "properties.partnerTopicFriendlyDescription")] + public string PartnerTopicFriendlyDescription { get; set; } + + /// + /// Gets the system metadata relating to this resource. + /// + [JsonProperty(PropertyName = "systemData")] + public SystemData SystemData { get; private set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelDestination.cs new file mode 100644 index 000000000000..e3b559e9d200 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelDestination.cs @@ -0,0 +1,81 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Properties of the destination of an event channel. + /// + public partial class EventChannelDestination + { + /// + /// Initializes a new instance of the EventChannelDestination class. + /// + public EventChannelDestination() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EventChannelDestination class. + /// + /// Azure subscription ID of the + /// customer creating the event channel. The partner topic + /// associated with the event channel will be created under this Azure + /// subscription. + /// Azure Resource Group of the customer + /// creating the event channel. The partner topic + /// associated with the event channel will be created under this + /// resource group. + /// Name of the partner topic associated + /// with the event channel. + public EventChannelDestination(string azureSubscriptionId = default(string), string resourceGroup = default(string), string partnerTopicName = default(string)) + { + AzureSubscriptionId = azureSubscriptionId; + ResourceGroup = resourceGroup; + PartnerTopicName = partnerTopicName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets azure subscription ID of the customer creating the + /// event channel. The partner topic + /// associated with the event channel will be created under this Azure + /// subscription. + /// + [JsonProperty(PropertyName = "azureSubscriptionId")] + public string AzureSubscriptionId { get; set; } + + /// + /// Gets or sets azure Resource Group of the customer creating the + /// event channel. The partner topic + /// associated with the event channel will be created under this + /// resource group. + /// + [JsonProperty(PropertyName = "resourceGroup")] + public string ResourceGroup { get; set; } + + /// + /// Gets or sets name of the partner topic associated with the event + /// channel. + /// + [JsonProperty(PropertyName = "partnerTopicName")] + public string PartnerTopicName { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelFilter.cs new file mode 100644 index 000000000000..7c4f32d884b5 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelFilter.cs @@ -0,0 +1,66 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Filter for the Event Channel. + /// + public partial class EventChannelFilter + { + /// + /// Initializes a new instance of the EventChannelFilter class. + /// + public EventChannelFilter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EventChannelFilter class. + /// + /// Allows advanced + /// filters to be evaluated against an array of values instead of + /// expecting a singular value. + /// An array of advanced filters that are + /// used for filtering event channels. + public EventChannelFilter(bool? enableAdvancedFilteringOnArrays = default(bool?), IList advancedFilters = default(IList)) + { + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays; + AdvancedFilters = advancedFilters; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets allows advanced filters to be evaluated against an + /// array of values instead of expecting a singular value. + /// + [JsonProperty(PropertyName = "enableAdvancedFilteringOnArrays")] + public bool? EnableAdvancedFilteringOnArrays { get; set; } + + /// + /// Gets or sets an array of advanced filters that are used for + /// filtering event channels. + /// + [JsonProperty(PropertyName = "advancedFilters")] + public IList AdvancedFilters { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelProvisioningState.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelProvisioningState.cs new file mode 100644 index 000000000000..0583d8001a61 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelProvisioningState.cs @@ -0,0 +1,26 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for EventChannelProvisioningState. + /// + public static class EventChannelProvisioningState + { + public const string Creating = "Creating"; + public const string Updating = "Updating"; + public const string Deleting = "Deleting"; + public const string Succeeded = "Succeeded"; + public const string Canceled = "Canceled"; + public const string Failed = "Failed"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelSource.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelSource.cs new file mode 100644 index 000000000000..0d498701f6ff --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelSource.cs @@ -0,0 +1,56 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Properties of the source of an event channel. + /// + public partial class EventChannelSource + { + /// + /// Initializes a new instance of the EventChannelSource class. + /// + public EventChannelSource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EventChannelSource class. + /// + /// The identifier of the resource that's the + /// source of the events. + /// This represents a unique resource in the partner's resource + /// model. + public EventChannelSource(string source = default(string)) + { + Source = source; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the identifier of the resource that's the source of + /// the events. + /// This represents a unique resource in the partner's resource model. + /// + [JsonProperty(PropertyName = "source")] + public string Source { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventHubEventSubscriptionDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventHubEventSubscriptionDestination.cs index 316004562aea..4b6f88cd679e 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventHubEventSubscriptionDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventHubEventSubscriptionDestination.cs @@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.EventGrid.Models using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -38,9 +40,12 @@ public EventHubEventSubscriptionDestination() /// The Azure Resource Id that represents the /// endpoint of an Event Hub destination of an event /// subscription. - public EventHubEventSubscriptionDestination(string resourceId = default(string)) + /// Delivery attribute + /// details. + public EventHubEventSubscriptionDestination(string resourceId = default(string), IList deliveryAttributeMappings = default(IList)) { ResourceId = resourceId; + DeliveryAttributeMappings = deliveryAttributeMappings; CustomInit(); } @@ -56,5 +61,11 @@ public EventHubEventSubscriptionDestination() [JsonProperty(PropertyName = "properties.resourceId")] public string ResourceId { get; set; } + /// + /// Gets or sets delivery attribute details. + /// + [JsonProperty(PropertyName = "properties.deliveryAttributeMappings")] + public IList DeliveryAttributeMappings { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscription.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscription.cs index 2b2f7d2e57ff..d27417e28e14 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscription.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscription.cs @@ -45,7 +45,15 @@ public EventSubscription() /// 'Deleting', 'Succeeded', 'Canceled', 'Failed', /// 'AwaitingManualAction' /// Information about the destination where - /// events have to be delivered for the event subscription. + /// events have to be delivered for the event subscription. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. + /// Information about the + /// destination where events have to be delivered for the event + /// subscription. + /// Uses the managed identity setup on the parent resource (namely, + /// topic or domain) to acquire the authentication tokens being used + /// during delivery / dead-lettering. /// Information about the filter for the event /// subscription. /// List of user defined labels. @@ -57,20 +65,35 @@ public EventSubscription() /// The retry policy for events. This can be /// used to configure maximum number of delivery attempts and time to /// live for events. - /// The DeadLetter destination of - /// the event subscription. - public EventSubscription(string id = default(string), string name = default(string), string type = default(string), string topic = default(string), string provisioningState = default(string), EventSubscriptionDestination destination = default(EventSubscriptionDestination), EventSubscriptionFilter filter = default(EventSubscriptionFilter), IList labels = default(IList), System.DateTime? expirationTimeUtc = default(System.DateTime?), string eventDeliverySchema = default(string), RetryPolicy retryPolicy = default(RetryPolicy), DeadLetterDestination deadLetterDestination = default(DeadLetterDestination)) + /// The dead letter destination of + /// the event subscription. Any event that cannot be delivered to its' + /// destination is sent to the dead letter destination. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. + /// The dead letter + /// destination of the event subscription. Any event that cannot be + /// delivered to its' destination is sent to the dead letter + /// destination. + /// Uses the managed identity setup on the parent resource (namely, + /// topic or domain) to acquire the authentication tokens being used + /// during delivery / dead-lettering. + /// The system metadata relating to this + /// resource. + public EventSubscription(string id = default(string), string name = default(string), string type = default(string), string topic = default(string), string provisioningState = default(string), EventSubscriptionDestination destination = default(EventSubscriptionDestination), DeliveryWithResourceIdentity deliveryWithResourceIdentity = default(DeliveryWithResourceIdentity), EventSubscriptionFilter filter = default(EventSubscriptionFilter), IList labels = default(IList), System.DateTime? expirationTimeUtc = default(System.DateTime?), string eventDeliverySchema = default(string), RetryPolicy retryPolicy = default(RetryPolicy), DeadLetterDestination deadLetterDestination = default(DeadLetterDestination), DeadLetterWithResourceIdentity deadLetterWithResourceIdentity = default(DeadLetterWithResourceIdentity), SystemData systemData = default(SystemData)) : base(id, name, type) { Topic = topic; ProvisioningState = provisioningState; Destination = destination; + DeliveryWithResourceIdentity = deliveryWithResourceIdentity; Filter = filter; Labels = labels; ExpirationTimeUtc = expirationTimeUtc; EventDeliverySchema = eventDeliverySchema; RetryPolicy = retryPolicy; DeadLetterDestination = deadLetterDestination; + DeadLetterWithResourceIdentity = deadLetterWithResourceIdentity; + SystemData = systemData; CustomInit(); } @@ -96,10 +119,22 @@ public EventSubscription() /// /// Gets or sets information about the destination where events have to /// be delivered for the event subscription. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. /// [JsonProperty(PropertyName = "properties.destination")] public EventSubscriptionDestination Destination { get; set; } + /// + /// Gets or sets information about the destination where events have to + /// be delivered for the event subscription. + /// Uses the managed identity setup on the parent resource (namely, + /// topic or domain) to acquire the authentication tokens being used + /// during delivery / dead-lettering. + /// + [JsonProperty(PropertyName = "properties.deliveryWithResourceIdentity")] + public DeliveryWithResourceIdentity DeliveryWithResourceIdentity { get; set; } + /// /// Gets or sets information about the filter for the event /// subscription. @@ -136,10 +171,31 @@ public EventSubscription() public RetryPolicy RetryPolicy { get; set; } /// - /// Gets or sets the DeadLetter destination of the event subscription. + /// Gets or sets the dead letter destination of the event subscription. + /// Any event that cannot be delivered to its' destination is sent to + /// the dead letter destination. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. /// [JsonProperty(PropertyName = "properties.deadLetterDestination")] public DeadLetterDestination DeadLetterDestination { get; set; } + /// + /// Gets or sets the dead letter destination of the event subscription. + /// Any event that cannot be delivered to its' destination is sent to + /// the dead letter destination. + /// Uses the managed identity setup on the parent resource (namely, + /// topic or domain) to acquire the authentication tokens being used + /// during delivery / dead-lettering. + /// + [JsonProperty(PropertyName = "properties.deadLetterWithResourceIdentity")] + public DeadLetterWithResourceIdentity DeadLetterWithResourceIdentity { get; set; } + + /// + /// Gets the system metadata relating to this resource. + /// + [JsonProperty(PropertyName = "systemData")] + public SystemData SystemData { get; private set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionDestination.cs index f9ec84760c93..394af8038969 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionDestination.cs @@ -10,13 +10,11 @@ namespace Microsoft.Azure.Management.EventGrid.Models { - using Newtonsoft.Json; using System.Linq; /// /// Information about the destination for an event subscription. /// - [Newtonsoft.Json.JsonObject("EventSubscriptionDestination")] public partial class EventSubscriptionDestination { /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionFilter.cs index 6dfffd825501..b1df539479e4 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionFilter.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionFilter.cs @@ -45,14 +45,18 @@ public EventSubscriptionFilter() /// Specifies if the /// SubjectBeginsWith and SubjectEndsWith properties of the filter /// should be compared in a case sensitive manner. + /// Allows advanced + /// filters to be evaluated against an array of values instead of + /// expecting a singular value. /// An array of advanced filters that are /// used for filtering event subscriptions. - public EventSubscriptionFilter(string subjectBeginsWith = default(string), string subjectEndsWith = default(string), IList includedEventTypes = default(IList), bool? isSubjectCaseSensitive = default(bool?), IList advancedFilters = default(IList)) + public EventSubscriptionFilter(string subjectBeginsWith = default(string), string subjectEndsWith = default(string), IList includedEventTypes = default(IList), bool? isSubjectCaseSensitive = default(bool?), bool? enableAdvancedFilteringOnArrays = default(bool?), IList advancedFilters = default(IList)) { SubjectBeginsWith = subjectBeginsWith; SubjectEndsWith = subjectEndsWith; IncludedEventTypes = includedEventTypes; IsSubjectCaseSensitive = isSubjectCaseSensitive; + EnableAdvancedFilteringOnArrays = enableAdvancedFilteringOnArrays; AdvancedFilters = advancedFilters; CustomInit(); } @@ -95,6 +99,13 @@ public EventSubscriptionFilter() [JsonProperty(PropertyName = "isSubjectCaseSensitive")] public bool? IsSubjectCaseSensitive { get; set; } + /// + /// Gets or sets allows advanced filters to be evaluated against an + /// array of values instead of expecting a singular value. + /// + [JsonProperty(PropertyName = "enableAdvancedFilteringOnArrays")] + public bool? EnableAdvancedFilteringOnArrays { get; set; } + /// /// Gets or sets an array of advanced filters that are used for /// filtering event subscriptions. diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionIdentity.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionIdentity.cs new file mode 100644 index 000000000000..84aa816df9c1 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionIdentity.cs @@ -0,0 +1,68 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The identity information with the event subscription. + /// + public partial class EventSubscriptionIdentity + { + /// + /// Initializes a new instance of the EventSubscriptionIdentity class. + /// + public EventSubscriptionIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EventSubscriptionIdentity class. + /// + /// The type of managed identity used. The type + /// 'SystemAssigned, UserAssigned' includes both an implicitly created + /// identity and a set of user-assigned identities. The type 'None' + /// will remove any identity. Possible values include: + /// 'SystemAssigned', 'UserAssigned' + /// The user identity associated + /// with the resource. + public EventSubscriptionIdentity(string type = default(string), string userAssignedIdentity = default(string)) + { + Type = type; + UserAssignedIdentity = userAssignedIdentity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the type of managed identity used. The type + /// 'SystemAssigned, UserAssigned' includes both an implicitly created + /// identity and a set of user-assigned identities. The type 'None' + /// will remove any identity. Possible values include: + /// 'SystemAssigned', 'UserAssigned' + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets the user identity associated with the resource. + /// + [JsonProperty(PropertyName = "userAssignedIdentity")] + public string UserAssignedIdentity { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionIdentityType.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionIdentityType.cs new file mode 100644 index 000000000000..06c41887dab5 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionIdentityType.cs @@ -0,0 +1,22 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for EventSubscriptionIdentityType. + /// + public static class EventSubscriptionIdentityType + { + public const string SystemAssigned = "SystemAssigned"; + public const string UserAssigned = "UserAssigned"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionUpdateParameters.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionUpdateParameters.cs index 59903e2c7ef8..d6fb28f6b55e 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionUpdateParameters.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionUpdateParameters.cs @@ -34,7 +34,15 @@ public EventSubscriptionUpdateParameters() /// class. /// /// Information about the destination where - /// events have to be delivered for the event subscription. + /// events have to be delivered for the event subscription. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. + /// Information about the + /// destination where events have to be delivered for the event + /// subscription. + /// Uses the managed identity setup on the parent resource (topic / + /// domain) to acquire the authentication tokens being used during + /// delivery / dead-lettering. /// Information about the filter for the event /// subscription. /// List of user defined labels. @@ -46,17 +54,29 @@ public EventSubscriptionUpdateParameters() /// The retry policy for events. This can be /// used to configure maximum number of delivery attempts and time to /// live for events. - /// The DeadLetter destination of - /// the event subscription. - public EventSubscriptionUpdateParameters(EventSubscriptionDestination destination = default(EventSubscriptionDestination), EventSubscriptionFilter filter = default(EventSubscriptionFilter), IList labels = default(IList), System.DateTime? expirationTimeUtc = default(System.DateTime?), string eventDeliverySchema = default(string), RetryPolicy retryPolicy = default(RetryPolicy), DeadLetterDestination deadLetterDestination = default(DeadLetterDestination)) + /// The dead letter destination of + /// the event subscription. Any event that cannot be delivered to its' + /// destination is sent to the dead letter destination. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. + /// The dead letter + /// destination of the event subscription. Any event that cannot be + /// delivered to its' destination is sent to the dead letter + /// destination. + /// Uses the managed identity setup on the parent resource (topic / + /// domain) to acquire the authentication tokens being used during + /// delivery / dead-lettering. + public EventSubscriptionUpdateParameters(EventSubscriptionDestination destination = default(EventSubscriptionDestination), DeliveryWithResourceIdentity deliveryWithResourceIdentity = default(DeliveryWithResourceIdentity), EventSubscriptionFilter filter = default(EventSubscriptionFilter), IList labels = default(IList), System.DateTime? expirationTimeUtc = default(System.DateTime?), string eventDeliverySchema = default(string), RetryPolicy retryPolicy = default(RetryPolicy), DeadLetterDestination deadLetterDestination = default(DeadLetterDestination), DeadLetterWithResourceIdentity deadLetterWithResourceIdentity = default(DeadLetterWithResourceIdentity)) { Destination = destination; + DeliveryWithResourceIdentity = deliveryWithResourceIdentity; Filter = filter; Labels = labels; ExpirationTimeUtc = expirationTimeUtc; EventDeliverySchema = eventDeliverySchema; RetryPolicy = retryPolicy; DeadLetterDestination = deadLetterDestination; + DeadLetterWithResourceIdentity = deadLetterWithResourceIdentity; CustomInit(); } @@ -68,10 +88,22 @@ public EventSubscriptionUpdateParameters() /// /// Gets or sets information about the destination where events have to /// be delivered for the event subscription. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. /// [JsonProperty(PropertyName = "destination")] public EventSubscriptionDestination Destination { get; set; } + /// + /// Gets or sets information about the destination where events have to + /// be delivered for the event subscription. + /// Uses the managed identity setup on the parent resource (topic / + /// domain) to acquire the authentication tokens being used during + /// delivery / dead-lettering. + /// + [JsonProperty(PropertyName = "deliveryWithResourceIdentity")] + public DeliveryWithResourceIdentity DeliveryWithResourceIdentity { get; set; } + /// /// Gets or sets information about the filter for the event /// subscription. @@ -109,10 +141,25 @@ public EventSubscriptionUpdateParameters() public RetryPolicy RetryPolicy { get; set; } /// - /// Gets or sets the DeadLetter destination of the event subscription. + /// Gets or sets the dead letter destination of the event subscription. + /// Any event that cannot be delivered to its' destination is sent to + /// the dead letter destination. + /// Uses Azure Event Grid's identity to acquire the authentication + /// tokens being used during delivery / dead-lettering. /// [JsonProperty(PropertyName = "deadLetterDestination")] public DeadLetterDestination DeadLetterDestination { get; set; } + /// + /// Gets or sets the dead letter destination of the event subscription. + /// Any event that cannot be delivered to its' destination is sent to + /// the dead letter destination. + /// Uses the managed identity setup on the parent resource (topic / + /// domain) to acquire the authentication tokens being used during + /// delivery / dead-lettering. + /// + [JsonProperty(PropertyName = "deadLetterWithResourceIdentity")] + public DeadLetterWithResourceIdentity DeadLetterWithResourceIdentity { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ExtendedLocation.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ExtendedLocation.cs new file mode 100644 index 000000000000..91bf327c7a5f --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ExtendedLocation.cs @@ -0,0 +1,60 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Definition of an Extended Location + /// + public partial class ExtendedLocation + { + /// + /// Initializes a new instance of the ExtendedLocation class. + /// + public ExtendedLocation() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ExtendedLocation class. + /// + /// Fully qualified name of the extended + /// location. + /// Type of the extended location. + public ExtendedLocation(string name = default(string), string type = default(string)) + { + Name = name; + Type = type; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets fully qualified name of the extended location. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets type of the extended location. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ExtensionTopic.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ExtensionTopic.cs new file mode 100644 index 000000000000..71f5c25b919d --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ExtensionTopic.cs @@ -0,0 +1,71 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Event grid Extension Topic. This is used for getting Event Grid related + /// metrics for Azure resources. + /// + [Rest.Serialization.JsonTransformation] + public partial class ExtensionTopic : Resource + { + /// + /// Initializes a new instance of the ExtensionTopic class. + /// + public ExtensionTopic() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ExtensionTopic class. + /// + /// Fully qualified identifier of the + /// resource. + /// Name of the resource. + /// Type of the resource. + /// Description of the extension + /// topic. + /// System topic resource id which is mapped + /// to the source. + public ExtensionTopic(string id = default(string), string name = default(string), string type = default(string), string description = default(string), string systemTopic = default(string)) + : base(id, name, type) + { + Description = description; + SystemTopic = systemTopic; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets description of the extension topic. + /// + [JsonProperty(PropertyName = "properties.description")] + public string Description { get; set; } + + /// + /// Gets or sets system topic resource id which is mapped to the + /// source. + /// + [JsonProperty(PropertyName = "properties.systemTopic")] + public string SystemTopic { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/HybridConnectionEventSubscriptionDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/HybridConnectionEventSubscriptionDestination.cs index 218a89fcbc6d..e136a13f09e9 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/HybridConnectionEventSubscriptionDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/HybridConnectionEventSubscriptionDestination.cs @@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.EventGrid.Models using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -39,9 +41,12 @@ public HybridConnectionEventSubscriptionDestination() /// The Azure Resource ID of an hybrid /// connection that is the destination of an event /// subscription. - public HybridConnectionEventSubscriptionDestination(string resourceId = default(string)) + /// Delivery attribute + /// details. + public HybridConnectionEventSubscriptionDestination(string resourceId = default(string), IList deliveryAttributeMappings = default(IList)) { ResourceId = resourceId; + DeliveryAttributeMappings = deliveryAttributeMappings; CustomInit(); } @@ -57,5 +62,11 @@ public HybridConnectionEventSubscriptionDestination() [JsonProperty(PropertyName = "properties.resourceId")] public string ResourceId { get; set; } + /// + /// Gets or sets delivery attribute details. + /// + [JsonProperty(PropertyName = "properties.deliveryAttributeMappings")] + public IList DeliveryAttributeMappings { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IdentityInfo.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IdentityInfo.cs new file mode 100644 index 000000000000..c860851f8f3b --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IdentityInfo.cs @@ -0,0 +1,96 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The identity information for the resource. + /// + public partial class IdentityInfo + { + /// + /// Initializes a new instance of the IdentityInfo class. + /// + public IdentityInfo() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the IdentityInfo class. + /// + /// The type of managed identity used. The type + /// 'SystemAssigned, UserAssigned' includes both an implicitly created + /// identity and a set of user-assigned identities. The type 'None' + /// will remove any identity. Possible values include: 'None', + /// 'SystemAssigned', 'UserAssigned', 'SystemAssigned, + /// UserAssigned' + /// The principal ID of resource + /// identity. + /// The tenant ID of resource. + /// The list of user identities + /// associated with the resource. The user identity dictionary key + /// references will be ARM resource ids in the form: + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + /// This property is currently not used and reserved for future + /// usage. + public IdentityInfo(string type = default(string), string principalId = default(string), string tenantId = default(string), IDictionary userAssignedIdentities = default(IDictionary)) + { + Type = type; + PrincipalId = principalId; + TenantId = tenantId; + UserAssignedIdentities = userAssignedIdentities; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the type of managed identity used. The type + /// 'SystemAssigned, UserAssigned' includes both an implicitly created + /// identity and a set of user-assigned identities. The type 'None' + /// will remove any identity. Possible values include: 'None', + /// 'SystemAssigned', 'UserAssigned', 'SystemAssigned, UserAssigned' + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets the principal ID of resource identity. + /// + [JsonProperty(PropertyName = "principalId")] + public string PrincipalId { get; set; } + + /// + /// Gets or sets the tenant ID of resource. + /// + [JsonProperty(PropertyName = "tenantId")] + public string TenantId { get; set; } + + /// + /// Gets or sets the list of user identities associated with the + /// resource. The user identity dictionary key references will be ARM + /// resource ids in the form: + /// '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. + /// This property is currently not used and reserved for future usage. + /// + [JsonProperty(PropertyName = "userAssignedIdentities")] + public IDictionary UserAssignedIdentities { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IdentityType.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IdentityType.cs new file mode 100644 index 000000000000..4a04461638d5 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IdentityType.cs @@ -0,0 +1,24 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for IdentityType. + /// + public static class IdentityType + { + public const string None = "None"; + public const string SystemAssigned = "SystemAssigned"; + public const string UserAssigned = "UserAssigned"; + public const string SystemAssignedUserAssigned = "SystemAssigned, UserAssigned"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/InputSchemaMapping.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/InputSchemaMapping.cs index e1558f810985..18a9bec9d083 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/InputSchemaMapping.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/InputSchemaMapping.cs @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.EventGrid.Models { - using Newtonsoft.Json; using System.Linq; /// @@ -19,7 +18,6 @@ namespace Microsoft.Azure.Management.EventGrid.Models /// Grid using a custom input schema. Currently, the only supported type of /// InputSchemaMapping is 'JsonInputSchemaMapping'. /// - [Newtonsoft.Json.JsonObject("InputSchemaMapping")] public partial class InputSchemaMapping { /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IsNotNullAdvancedFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IsNotNullAdvancedFilter.cs new file mode 100644 index 000000000000..4599cd6b34b1 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IsNotNullAdvancedFilter.cs @@ -0,0 +1,47 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// IsNotNull Advanced Filter. + /// + [Newtonsoft.Json.JsonObject("IsNotNull")] + public partial class IsNotNullAdvancedFilter : AdvancedFilter + { + /// + /// Initializes a new instance of the IsNotNullAdvancedFilter class. + /// + public IsNotNullAdvancedFilter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the IsNotNullAdvancedFilter class. + /// + /// The field/property in the event based on which + /// you want to filter. + public IsNotNullAdvancedFilter(string key = default(string)) + : base(key) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IsNullOrUndefinedAdvancedFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IsNullOrUndefinedAdvancedFilter.cs new file mode 100644 index 000000000000..8a85bcb88ba1 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/IsNullOrUndefinedAdvancedFilter.cs @@ -0,0 +1,49 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// IsNullOrUndefined Advanced Filter. + /// + [Newtonsoft.Json.JsonObject("IsNullOrUndefined")] + public partial class IsNullOrUndefinedAdvancedFilter : AdvancedFilter + { + /// + /// Initializes a new instance of the IsNullOrUndefinedAdvancedFilter + /// class. + /// + public IsNullOrUndefinedAdvancedFilter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the IsNullOrUndefinedAdvancedFilter + /// class. + /// + /// The field/property in the event based on which + /// you want to filter. + public IsNullOrUndefinedAdvancedFilter(string key = default(string)) + : base(key) + { + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/NumberInRangeAdvancedFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/NumberInRangeAdvancedFilter.cs new file mode 100644 index 000000000000..f353c5512efe --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/NumberInRangeAdvancedFilter.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// NumberInRange Advanced Filter. + /// + [Newtonsoft.Json.JsonObject("NumberInRange")] + public partial class NumberInRangeAdvancedFilter : AdvancedFilter + { + /// + /// Initializes a new instance of the NumberInRangeAdvancedFilter + /// class. + /// + public NumberInRangeAdvancedFilter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NumberInRangeAdvancedFilter + /// class. + /// + /// The field/property in the event based on which + /// you want to filter. + /// The set of filter values. + public NumberInRangeAdvancedFilter(string key = default(string), IList> values = default(IList>)) + : base(key) + { + Values = values; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the set of filter values. + /// + [JsonProperty(PropertyName = "values")] + public IList> Values { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/NumberNotInRangeAdvancedFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/NumberNotInRangeAdvancedFilter.cs new file mode 100644 index 000000000000..8498db863dde --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/NumberNotInRangeAdvancedFilter.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// NumberNotInRange Advanced Filter. + /// + [Newtonsoft.Json.JsonObject("NumberNotInRange")] + public partial class NumberNotInRangeAdvancedFilter : AdvancedFilter + { + /// + /// Initializes a new instance of the NumberNotInRangeAdvancedFilter + /// class. + /// + public NumberNotInRangeAdvancedFilter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NumberNotInRangeAdvancedFilter + /// class. + /// + /// The field/property in the event based on which + /// you want to filter. + /// The set of filter values. + public NumberNotInRangeAdvancedFilter(string key = default(string), IList> values = default(IList>)) + : base(key) + { + Values = values; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the set of filter values. + /// + [JsonProperty(PropertyName = "values")] + public IList> Values { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespace.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespace.cs new file mode 100644 index 000000000000..48704d0e4f58 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespace.cs @@ -0,0 +1,109 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// EventGrid Partner Namespace. + /// + [Rest.Serialization.JsonTransformation] + public partial class PartnerNamespace : TrackedResource + { + /// + /// Initializes a new instance of the PartnerNamespace class. + /// + public PartnerNamespace() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PartnerNamespace class. + /// + /// Location of the resource. + /// Fully qualified identifier of the + /// resource. + /// Name of the resource. + /// Type of the resource. + /// Tags of the resource. + /// Provisioning state of the partner + /// namespace. Possible values include: 'Creating', 'Updating', + /// 'Deleting', 'Succeeded', 'Canceled', 'Failed' + /// The fully + /// qualified ARM Id of the partner registration that should be + /// associated with this partner namespace. This takes the following + /// format: + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}. + /// Endpoint for the partner namespace. + /// The system metadata relating to this + /// resource. + public PartnerNamespace(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string partnerRegistrationFullyQualifiedId = default(string), string endpoint = default(string), SystemData systemData = default(SystemData)) + : base(location, id, name, type, tags) + { + ProvisioningState = provisioningState; + PartnerRegistrationFullyQualifiedId = partnerRegistrationFullyQualifiedId; + Endpoint = endpoint; + SystemData = systemData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets provisioning state of the partner namespace. Possible values + /// include: 'Creating', 'Updating', 'Deleting', 'Succeeded', + /// 'Canceled', 'Failed' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets or sets the fully qualified ARM Id of the partner registration + /// that should be associated with this partner namespace. This takes + /// the following format: + /// /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}. + /// + [JsonProperty(PropertyName = "properties.partnerRegistrationFullyQualifiedId")] + public string PartnerRegistrationFullyQualifiedId { get; set; } + + /// + /// Gets endpoint for the partner namespace. + /// + [JsonProperty(PropertyName = "properties.endpoint")] + public string Endpoint { get; private set; } + + /// + /// Gets the system metadata relating to this resource. + /// + [JsonProperty(PropertyName = "systemData")] + public SystemData SystemData { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceProvisioningState.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceProvisioningState.cs new file mode 100644 index 000000000000..a93d8ed974e0 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceProvisioningState.cs @@ -0,0 +1,26 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for PartnerNamespaceProvisioningState. + /// + public static class PartnerNamespaceProvisioningState + { + public const string Creating = "Creating"; + public const string Updating = "Updating"; + public const string Deleting = "Deleting"; + public const string Succeeded = "Succeeded"; + public const string Canceled = "Canceled"; + public const string Failed = "Failed"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceRegenerateKeyRequest.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceRegenerateKeyRequest.cs new file mode 100644 index 000000000000..87f6e0700a98 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceRegenerateKeyRequest.cs @@ -0,0 +1,68 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// PartnerNamespace regenerate shared access key request. + /// + public partial class PartnerNamespaceRegenerateKeyRequest + { + /// + /// Initializes a new instance of the + /// PartnerNamespaceRegenerateKeyRequest class. + /// + public PartnerNamespaceRegenerateKeyRequest() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// PartnerNamespaceRegenerateKeyRequest class. + /// + /// Key name to regenerate (key1 or + /// key2). + public PartnerNamespaceRegenerateKeyRequest(string keyName) + { + KeyName = keyName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets key name to regenerate (key1 or key2). + /// + [JsonProperty(PropertyName = "keyName")] + public string KeyName { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (KeyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "KeyName"); + } + } + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceSharedAccessKeys.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceSharedAccessKeys.cs new file mode 100644 index 000000000000..16ada036cecb --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceSharedAccessKeys.cs @@ -0,0 +1,63 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Shared access keys of the partner namespace. + /// + public partial class PartnerNamespaceSharedAccessKeys + { + /// + /// Initializes a new instance of the PartnerNamespaceSharedAccessKeys + /// class. + /// + public PartnerNamespaceSharedAccessKeys() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PartnerNamespaceSharedAccessKeys + /// class. + /// + /// Shared access key1 for the partner + /// namespace. + /// Shared access key2 for the partner + /// namespace. + public PartnerNamespaceSharedAccessKeys(string key1 = default(string), string key2 = default(string)) + { + Key1 = key1; + Key2 = key2; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets shared access key1 for the partner namespace. + /// + [JsonProperty(PropertyName = "key1")] + public string Key1 { get; set; } + + /// + /// Gets or sets shared access key2 for the partner namespace. + /// + [JsonProperty(PropertyName = "key2")] + public string Key2 { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceUpdateParameters.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceUpdateParameters.cs new file mode 100644 index 000000000000..7b8cbbacd418 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerNamespaceUpdateParameters.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Properties of the PartnerNamespace update. + /// + public partial class PartnerNamespaceUpdateParameters + { + /// + /// Initializes a new instance of the PartnerNamespaceUpdateParameters + /// class. + /// + public PartnerNamespaceUpdateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PartnerNamespaceUpdateParameters + /// class. + /// + /// Tags of the partner namespace. + public PartnerNamespaceUpdateParameters(IDictionary tags = default(IDictionary)) + { + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets tags of the partner namespace. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistration.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistration.cs new file mode 100644 index 000000000000..edcf663a92db --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistration.cs @@ -0,0 +1,234 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Information about a partner registration. + /// + [Rest.Serialization.JsonTransformation] + public partial class PartnerRegistration : TrackedResource + { + /// + /// Initializes a new instance of the PartnerRegistration class. + /// + public PartnerRegistration() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PartnerRegistration class. + /// + /// Location of the resource. + /// Fully qualified identifier of the + /// resource. + /// Name of the resource. + /// Type of the resource. + /// Tags of the resource. + /// Provisioning state of the partner + /// registration. Possible values include: 'Creating', 'Updating', + /// 'Deleting', 'Succeeded', 'Canceled', 'Failed' + /// Official name of the partner name. For + /// example: "Contoso". + /// Name of the partner resource + /// type. + /// Display name of the + /// partner resource type. + /// Short description of + /// the partner resource type. The length of this description should + /// not exceed 256 characters. + /// Long description for the custom + /// scenarios and integration to be displayed in the portal if needed. + /// Length of this description should not exceed 2048 + /// characters. + /// The customer service + /// number of the publisher. The expected phone format should start + /// with a '+' sign + /// followed by the country code. The remaining digits are then + /// followed. Only digits and spaces are allowed and its + /// length cannot exceed 16 digits including country code. Examples of + /// valid phone numbers are: +1 515 123 4567 and + /// +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) + /// 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43 + /// The extension of the + /// customer service number of the publisher. Only digits are allowed + /// and number of digits should not exceed 10. + /// The extension of the customer + /// service URI of the publisher. + /// URI of the partner website that can be used + /// by Azure customers to setup Event Grid + /// integration on an event source. + /// URI of the logo. + /// Visibility state of the partner + /// registration. Possible values include: 'Hidden', 'PublicPreview', + /// 'GenerallyAvailable' + /// List of Azure + /// subscription Ids that are authorized to create a partner namespace + /// associated with this partner registration. This is an optional + /// property. Creating + /// partner namespaces is always permitted under the same Azure + /// subscription as the one used + /// for creating the partner registration. + /// The system metadata relating to this + /// resource. + public PartnerRegistration(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string partnerName = default(string), string partnerResourceTypeName = default(string), string partnerResourceTypeDisplayName = default(string), string partnerResourceTypeDescription = default(string), string longDescription = default(string), string partnerCustomerServiceNumber = default(string), string partnerCustomerServiceExtension = default(string), string customerServiceUri = default(string), string setupUri = default(string), string logoUri = default(string), string visibilityState = default(string), IList authorizedAzureSubscriptionIds = default(IList), SystemData systemData = default(SystemData)) + : base(location, id, name, type, tags) + { + ProvisioningState = provisioningState; + PartnerName = partnerName; + PartnerResourceTypeName = partnerResourceTypeName; + PartnerResourceTypeDisplayName = partnerResourceTypeDisplayName; + PartnerResourceTypeDescription = partnerResourceTypeDescription; + LongDescription = longDescription; + PartnerCustomerServiceNumber = partnerCustomerServiceNumber; + PartnerCustomerServiceExtension = partnerCustomerServiceExtension; + CustomerServiceUri = customerServiceUri; + SetupUri = setupUri; + LogoUri = logoUri; + VisibilityState = visibilityState; + AuthorizedAzureSubscriptionIds = authorizedAzureSubscriptionIds; + SystemData = systemData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets provisioning state of the partner registration. Possible + /// values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', + /// 'Canceled', 'Failed' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets or sets official name of the partner name. For example: + /// "Contoso". + /// + [JsonProperty(PropertyName = "properties.partnerName")] + public string PartnerName { get; set; } + + /// + /// Gets or sets name of the partner resource type. + /// + [JsonProperty(PropertyName = "properties.partnerResourceTypeName")] + public string PartnerResourceTypeName { get; set; } + + /// + /// Gets or sets display name of the partner resource type. + /// + [JsonProperty(PropertyName = "properties.partnerResourceTypeDisplayName")] + public string PartnerResourceTypeDisplayName { get; set; } + + /// + /// Gets or sets short description of the partner resource type. The + /// length of this description should not exceed 256 characters. + /// + [JsonProperty(PropertyName = "properties.partnerResourceTypeDescription")] + public string PartnerResourceTypeDescription { get; set; } + + /// + /// Gets or sets long description for the custom scenarios and + /// integration to be displayed in the portal if needed. + /// Length of this description should not exceed 2048 characters. + /// + [JsonProperty(PropertyName = "properties.longDescription")] + public string LongDescription { get; set; } + + /// + /// Gets or sets the customer service number of the publisher. The + /// expected phone format should start with a '+' sign + /// followed by the country code. The remaining digits are then + /// followed. Only digits and spaces are allowed and its + /// length cannot exceed 16 digits including country code. Examples of + /// valid phone numbers are: +1 515 123 4567 and + /// +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) + /// 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43 + /// + [JsonProperty(PropertyName = "properties.partnerCustomerServiceNumber")] + public string PartnerCustomerServiceNumber { get; set; } + + /// + /// Gets or sets the extension of the customer service number of the + /// publisher. Only digits are allowed and number of digits should not + /// exceed 10. + /// + [JsonProperty(PropertyName = "properties.partnerCustomerServiceExtension")] + public string PartnerCustomerServiceExtension { get; set; } + + /// + /// Gets or sets the extension of the customer service URI of the + /// publisher. + /// + [JsonProperty(PropertyName = "properties.customerServiceUri")] + public string CustomerServiceUri { get; set; } + + /// + /// Gets or sets URI of the partner website that can be used by Azure + /// customers to setup Event Grid + /// integration on an event source. + /// + [JsonProperty(PropertyName = "properties.setupUri")] + public string SetupUri { get; set; } + + /// + /// Gets or sets URI of the logo. + /// + [JsonProperty(PropertyName = "properties.logoUri")] + public string LogoUri { get; set; } + + /// + /// Gets or sets visibility state of the partner registration. Possible + /// values include: 'Hidden', 'PublicPreview', 'GenerallyAvailable' + /// + [JsonProperty(PropertyName = "properties.visibilityState")] + public string VisibilityState { get; set; } + + /// + /// Gets or sets list of Azure subscription Ids that are authorized to + /// create a partner namespace + /// associated with this partner registration. This is an optional + /// property. Creating + /// partner namespaces is always permitted under the same Azure + /// subscription as the one used + /// for creating the partner registration. + /// + [JsonProperty(PropertyName = "properties.authorizedAzureSubscriptionIds")] + public IList AuthorizedAzureSubscriptionIds { get; set; } + + /// + /// Gets the system metadata relating to this resource. + /// + [JsonProperty(PropertyName = "systemData")] + public SystemData SystemData { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationEventTypesListResult.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationEventTypesListResult.cs new file mode 100644 index 000000000000..860e809317c4 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationEventTypesListResult.cs @@ -0,0 +1,66 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Result of the List Partner Registration Event Types operation. + /// + public partial class PartnerRegistrationEventTypesListResult + { + /// + /// Initializes a new instance of the + /// PartnerRegistrationEventTypesListResult class. + /// + public PartnerRegistrationEventTypesListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// PartnerRegistrationEventTypesListResult class. + /// + /// A collection of partner registration event + /// types. + /// A link for the next page of partner + /// registration event types. + public PartnerRegistrationEventTypesListResult(IList value = default(IList), string nextLink = default(string)) + { + Value = value; + NextLink = nextLink; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a collection of partner registration event types. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + /// + /// Gets or sets a link for the next page of partner registration event + /// types. + /// + [JsonProperty(PropertyName = "nextLink")] + public string NextLink { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationProvisioningState.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationProvisioningState.cs new file mode 100644 index 000000000000..e08bf8afb566 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationProvisioningState.cs @@ -0,0 +1,26 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for PartnerRegistrationProvisioningState. + /// + public static class PartnerRegistrationProvisioningState + { + public const string Creating = "Creating"; + public const string Updating = "Updating"; + public const string Deleting = "Deleting"; + public const string Succeeded = "Succeeded"; + public const string Canceled = "Canceled"; + public const string Failed = "Failed"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationUpdateParameters.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationUpdateParameters.cs new file mode 100644 index 000000000000..5574b3a872f0 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationUpdateParameters.cs @@ -0,0 +1,123 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Properties of the Partner Registration update. + /// + public partial class PartnerRegistrationUpdateParameters + { + /// + /// Initializes a new instance of the + /// PartnerRegistrationUpdateParameters class. + /// + public PartnerRegistrationUpdateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// PartnerRegistrationUpdateParameters class. + /// + /// Tags of the partner registration + /// resource. + /// Name of the partner topic + /// type. + /// Display name of the + /// partner topic type. + /// Description of the + /// partner topic type. + /// URI of the partner website that can be used + /// by Azure customers to setup Event Grid + /// integration on an event source. + /// URI of the partner logo. + /// List of IDs of Azure + /// AD applications that are authorized to create a partner namespace + /// associated with this partner registration. This is an optional + /// property. Creating + /// partner namespaces is always permitted under the same Azure + /// subscription as the one used + /// for creating the partner registration. + public PartnerRegistrationUpdateParameters(IDictionary tags = default(IDictionary), string partnerTopicTypeName = default(string), string partnerTopicTypeDisplayName = default(string), string partnerTopicTypeDescription = default(string), string setupUri = default(string), string logoUri = default(string), IList authorizedAzureSubscriptionIds = default(IList)) + { + Tags = tags; + PartnerTopicTypeName = partnerTopicTypeName; + PartnerTopicTypeDisplayName = partnerTopicTypeDisplayName; + PartnerTopicTypeDescription = partnerTopicTypeDescription; + SetupUri = setupUri; + LogoUri = logoUri; + AuthorizedAzureSubscriptionIds = authorizedAzureSubscriptionIds; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets tags of the partner registration resource. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets name of the partner topic type. + /// + [JsonProperty(PropertyName = "partnerTopicTypeName")] + public string PartnerTopicTypeName { get; set; } + + /// + /// Gets or sets display name of the partner topic type. + /// + [JsonProperty(PropertyName = "partnerTopicTypeDisplayName")] + public string PartnerTopicTypeDisplayName { get; set; } + + /// + /// Gets or sets description of the partner topic type. + /// + [JsonProperty(PropertyName = "partnerTopicTypeDescription")] + public string PartnerTopicTypeDescription { get; set; } + + /// + /// Gets or sets URI of the partner website that can be used by Azure + /// customers to setup Event Grid + /// integration on an event source. + /// + [JsonProperty(PropertyName = "setupUri")] + public string SetupUri { get; set; } + + /// + /// Gets or sets URI of the partner logo. + /// + [JsonProperty(PropertyName = "logoUri")] + public string LogoUri { get; set; } + + /// + /// Gets or sets list of IDs of Azure AD applications that are + /// authorized to create a partner namespace + /// associated with this partner registration. This is an optional + /// property. Creating + /// partner namespaces is always permitted under the same Azure + /// subscription as the one used + /// for creating the partner registration. + /// + [JsonProperty(PropertyName = "authorizedAzureSubscriptionIds")] + public IList AuthorizedAzureSubscriptionIds { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationVisibilityState.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationVisibilityState.cs new file mode 100644 index 000000000000..7a4343c5fc7e --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistrationVisibilityState.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for PartnerRegistrationVisibilityState. + /// + public static class PartnerRegistrationVisibilityState + { + public const string Hidden = "Hidden"; + public const string PublicPreview = "PublicPreview"; + public const string GenerallyAvailable = "GenerallyAvailable"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopic.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopic.cs new file mode 100644 index 000000000000..f2ce5ae3f574 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopic.cs @@ -0,0 +1,146 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// EventGrid Partner Topic. + /// + [Rest.Serialization.JsonTransformation] + public partial class PartnerTopic : TrackedResource + { + /// + /// Initializes a new instance of the PartnerTopic class. + /// + public PartnerTopic() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PartnerTopic class. + /// + /// Location of the resource. + /// Fully qualified identifier of the + /// resource. + /// Name of the resource. + /// Type of the resource. + /// Tags of the resource. + /// Source associated with this partner topic. + /// This represents a unique partner resource. + /// Expiration time of + /// the partner topic. If this timer expires while the partner topic is + /// still never activated, + /// the partner topic and corresponding event channel are + /// deleted. + /// Provisioning state of the partner + /// topic. Possible values include: 'Creating', 'Updating', 'Deleting', + /// 'Succeeded', 'Canceled', 'Failed' + /// Activation state of the partner + /// topic. Possible values include: 'NeverActivated', 'Activated', + /// 'Deactivated' + /// Friendly description + /// about the topic. This can be set by the publisher/partner to show + /// custom description for the customer partner topic. + /// This will be helpful to remove any ambiguity of the origin of + /// creation of the partner topic for the customer. + /// Identity information for the + /// resource. + /// The system metadata relating to this + /// resource. + public PartnerTopic(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string source = default(string), System.DateTime? expirationTimeIfNotActivatedUtc = default(System.DateTime?), string provisioningState = default(string), string activationState = default(string), string partnerTopicFriendlyDescription = default(string), IdentityInfo identity = default(IdentityInfo), SystemData systemData = default(SystemData)) + : base(location, id, name, type, tags) + { + Source = source; + ExpirationTimeIfNotActivatedUtc = expirationTimeIfNotActivatedUtc; + ProvisioningState = provisioningState; + ActivationState = activationState; + PartnerTopicFriendlyDescription = partnerTopicFriendlyDescription; + Identity = identity; + SystemData = systemData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets source associated with this partner topic. This + /// represents a unique partner resource. + /// + [JsonProperty(PropertyName = "properties.source")] + public string Source { get; set; } + + /// + /// Gets or sets expiration time of the partner topic. If this timer + /// expires while the partner topic is still never activated, + /// the partner topic and corresponding event channel are deleted. + /// + [JsonProperty(PropertyName = "properties.expirationTimeIfNotActivatedUtc")] + public System.DateTime? ExpirationTimeIfNotActivatedUtc { get; set; } + + /// + /// Gets provisioning state of the partner topic. Possible values + /// include: 'Creating', 'Updating', 'Deleting', 'Succeeded', + /// 'Canceled', 'Failed' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets or sets activation state of the partner topic. Possible values + /// include: 'NeverActivated', 'Activated', 'Deactivated' + /// + [JsonProperty(PropertyName = "properties.activationState")] + public string ActivationState { get; set; } + + /// + /// Gets or sets friendly description about the topic. This can be set + /// by the publisher/partner to show custom description for the + /// customer partner topic. + /// This will be helpful to remove any ambiguity of the origin of + /// creation of the partner topic for the customer. + /// + [JsonProperty(PropertyName = "properties.partnerTopicFriendlyDescription")] + public string PartnerTopicFriendlyDescription { get; set; } + + /// + /// Gets or sets identity information for the resource. + /// + [JsonProperty(PropertyName = "identity")] + public IdentityInfo Identity { get; set; } + + /// + /// Gets the system metadata relating to this resource. + /// + [JsonProperty(PropertyName = "systemData")] + public SystemData SystemData { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicActivationState.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicActivationState.cs new file mode 100644 index 000000000000..da853a2b216c --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicActivationState.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for PartnerTopicActivationState. + /// + public static class PartnerTopicActivationState + { + public const string NeverActivated = "NeverActivated"; + public const string Activated = "Activated"; + public const string Deactivated = "Deactivated"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicProvisioningState.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicProvisioningState.cs new file mode 100644 index 000000000000..9eb90ce309ad --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicProvisioningState.cs @@ -0,0 +1,26 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for PartnerTopicProvisioningState. + /// + public static class PartnerTopicProvisioningState + { + public const string Creating = "Creating"; + public const string Updating = "Updating"; + public const string Deleting = "Deleting"; + public const string Succeeded = "Succeeded"; + public const string Canceled = "Canceled"; + public const string Failed = "Failed"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicReadinessState.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicReadinessState.cs new file mode 100644 index 000000000000..2b4a5b43a492 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicReadinessState.cs @@ -0,0 +1,24 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for PartnerTopicReadinessState. + /// + public static class PartnerTopicReadinessState + { + public const string NotActivatedByUserYet = "NotActivatedByUserYet"; + public const string ActivatedByUser = "ActivatedByUser"; + public const string DeactivatedByUser = "DeactivatedByUser"; + public const string DeletedByUser = "DeletedByUser"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicType.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicType.cs new file mode 100644 index 000000000000..c1391303d3ac --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicType.cs @@ -0,0 +1,113 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Properties of a partner topic type. + /// + [Rest.Serialization.JsonTransformation] + public partial class PartnerTopicType : Resource + { + /// + /// Initializes a new instance of the PartnerTopicType class. + /// + public PartnerTopicType() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PartnerTopicType class. + /// + /// Fully qualified identifier of the + /// resource. + /// Name of the resource. + /// Type of the resource. + /// Official name of the partner. + /// Name of the partner topic type. This + /// name should be unique among all partner topic types names. + /// Display Name for the partner topic + /// type. + /// Description of the partner topic + /// type. + /// URI of the partner website that can be used + /// by Azure customers to setup Event Grid + /// integration on an event source. + /// Status of whether the customer has + /// authorized a partner to create partner topics + /// in the customer's subscription. Possible values include: + /// 'NotApplicable', 'NotAuthorized', 'Authorized' + public PartnerTopicType(string id = default(string), string name = default(string), string type = default(string), string partnerName = default(string), string topicTypeName = default(string), string displayName = default(string), string description = default(string), string setupUri = default(string), string authorizationState = default(string)) + : base(id, name, type) + { + PartnerName = partnerName; + TopicTypeName = topicTypeName; + DisplayName = displayName; + Description = description; + SetupUri = setupUri; + AuthorizationState = authorizationState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets official name of the partner. + /// + [JsonProperty(PropertyName = "properties.partnerName")] + public string PartnerName { get; set; } + + /// + /// Gets or sets name of the partner topic type. This name should be + /// unique among all partner topic types names. + /// + [JsonProperty(PropertyName = "properties.topicTypeName")] + public string TopicTypeName { get; set; } + + /// + /// Gets or sets display Name for the partner topic type. + /// + [JsonProperty(PropertyName = "properties.displayName")] + public string DisplayName { get; set; } + + /// + /// Gets or sets description of the partner topic type. + /// + [JsonProperty(PropertyName = "properties.description")] + public string Description { get; set; } + + /// + /// Gets or sets URI of the partner website that can be used by Azure + /// customers to setup Event Grid + /// integration on an event source. + /// + [JsonProperty(PropertyName = "properties.setupUri")] + public string SetupUri { get; set; } + + /// + /// Gets or sets status of whether the customer has authorized a + /// partner to create partner topics + /// in the customer's subscription. Possible values include: + /// 'NotApplicable', 'NotAuthorized', 'Authorized' + /// + [JsonProperty(PropertyName = "properties.authorizationState")] + public string AuthorizationState { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicTypeAuthorizationState.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicTypeAuthorizationState.cs new file mode 100644 index 000000000000..48554203ed03 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicTypeAuthorizationState.cs @@ -0,0 +1,23 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for PartnerTopicTypeAuthorizationState. + /// + public static class PartnerTopicTypeAuthorizationState + { + public const string NotApplicable = "NotApplicable"; + public const string NotAuthorized = "NotAuthorized"; + public const string Authorized = "Authorized"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicTypesListResult.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicTypesListResult.cs new file mode 100644 index 000000000000..712f3e05686c --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicTypesListResult.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Result of the List Partner Topic Types operation. + /// + public partial class PartnerTopicTypesListResult + { + /// + /// Initializes a new instance of the PartnerTopicTypesListResult + /// class. + /// + public PartnerTopicTypesListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PartnerTopicTypesListResult + /// class. + /// + /// A collection of partner topic types. + public PartnerTopicTypesListResult(IList value = default(IList)) + { + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets a collection of partner topic types. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicUpdateParameters.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicUpdateParameters.cs new file mode 100644 index 000000000000..c682c8cfdb00 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicUpdateParameters.cs @@ -0,0 +1,55 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Properties of the Partner Topic update. + /// + public partial class PartnerTopicUpdateParameters + { + /// + /// Initializes a new instance of the PartnerTopicUpdateParameters + /// class. + /// + public PartnerTopicUpdateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PartnerTopicUpdateParameters + /// class. + /// + /// Tags of the partner topic. + public PartnerTopicUpdateParameters(IDictionary tags = default(IDictionary)) + { + Tags = tags; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets tags of the partner topic. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PrivateLinkResource.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PrivateLinkResource.cs index a3f3e56b602e..141807a9564a 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PrivateLinkResource.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PrivateLinkResource.cs @@ -36,8 +36,8 @@ public PrivateLinkResource() /// /// Fully qualified identifier of the /// resource. - /// Name of the resource - /// Type of the resource + /// Name of the resource. + /// Type of the resource. public PrivateLinkResource(string groupId = default(string), string displayName = default(string), IList requiredMembers = default(IList), IList requiredZoneNames = default(IList), string id = default(string), string name = default(string), string type = default(string)) { GroupId = groupId; @@ -82,13 +82,13 @@ public PrivateLinkResource() public string Id { get; set; } /// - /// Gets or sets name of the resource + /// Gets or sets name of the resource. /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// - /// Gets or sets type of the resource + /// Gets or sets type of the resource. /// [JsonProperty(PropertyName = "type")] public string Type { get; set; } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Resource.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Resource.cs index 641e05f45021..667f107b78d9 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Resource.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Resource.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.EventGrid.Models using System.Linq; /// - /// Definition of a Resource. + /// Definition of a Resource /// public partial class Resource : IResource { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceKind.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceKind.cs new file mode 100644 index 000000000000..9b91794a16f1 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceKind.cs @@ -0,0 +1,22 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for ResourceKind. + /// + public static class ResourceKind + { + public const string Azure = "Azure"; + public const string AzureArc = "AzureArc"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceSku.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceSku.cs new file mode 100644 index 000000000000..eb5add078805 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceSku.cs @@ -0,0 +1,54 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Describes an EventGrid Resource Sku. + /// + public partial class ResourceSku + { + /// + /// Initializes a new instance of the ResourceSku class. + /// + public ResourceSku() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ResourceSku class. + /// + /// The Sku name of the resource. The possible + /// values are: Basic or Premium. Possible values include: 'Basic', + /// 'Premium' + public ResourceSku(string name = default(string)) + { + Name = name; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Sku name of the resource. The possible values are: + /// Basic or Premium. Possible values include: 'Basic', 'Premium' + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ServiceBusQueueEventSubscriptionDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ServiceBusQueueEventSubscriptionDestination.cs index d3cde149ce48..6d0009412ed2 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ServiceBusQueueEventSubscriptionDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ServiceBusQueueEventSubscriptionDestination.cs @@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.EventGrid.Models using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -39,9 +41,12 @@ public ServiceBusQueueEventSubscriptionDestination() /// The Azure Resource Id that represents the /// endpoint of the Service Bus destination of an event /// subscription. - public ServiceBusQueueEventSubscriptionDestination(string resourceId = default(string)) + /// Delivery attribute + /// details. + public ServiceBusQueueEventSubscriptionDestination(string resourceId = default(string), IList deliveryAttributeMappings = default(IList)) { ResourceId = resourceId; + DeliveryAttributeMappings = deliveryAttributeMappings; CustomInit(); } @@ -57,5 +62,11 @@ public ServiceBusQueueEventSubscriptionDestination() [JsonProperty(PropertyName = "properties.resourceId")] public string ResourceId { get; set; } + /// + /// Gets or sets delivery attribute details. + /// + [JsonProperty(PropertyName = "properties.deliveryAttributeMappings")] + public IList DeliveryAttributeMappings { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ServiceBusTopicEventSubscriptionDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ServiceBusTopicEventSubscriptionDestination.cs index 30f7bfdb5a6a..df5b42b1679c 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ServiceBusTopicEventSubscriptionDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ServiceBusTopicEventSubscriptionDestination.cs @@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.EventGrid.Models using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -39,9 +41,12 @@ public ServiceBusTopicEventSubscriptionDestination() /// The Azure Resource Id that represents the /// endpoint of the Service Bus Topic destination of an event /// subscription. - public ServiceBusTopicEventSubscriptionDestination(string resourceId = default(string)) + /// Delivery attribute + /// details. + public ServiceBusTopicEventSubscriptionDestination(string resourceId = default(string), IList deliveryAttributeMappings = default(IList)) { ResourceId = resourceId; + DeliveryAttributeMappings = deliveryAttributeMappings; CustomInit(); } @@ -57,5 +62,11 @@ public ServiceBusTopicEventSubscriptionDestination() [JsonProperty(PropertyName = "properties.resourceId")] public string ResourceId { get; set; } + /// + /// Gets or sets delivery attribute details. + /// + [JsonProperty(PropertyName = "properties.deliveryAttributeMappings")] + public IList DeliveryAttributeMappings { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Sku.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Sku.cs new file mode 100644 index 000000000000..7edc81720014 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Sku.cs @@ -0,0 +1,22 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for Sku. + /// + public static class Sku + { + public const string Basic = "Basic"; + public const string Premium = "Premium"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StaticDeliveryAttributeMapping.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StaticDeliveryAttributeMapping.cs new file mode 100644 index 000000000000..27b4d74b7ed1 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StaticDeliveryAttributeMapping.cs @@ -0,0 +1,70 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Static delivery attribute mapping details. + /// + [Newtonsoft.Json.JsonObject("Static")] + [Rest.Serialization.JsonTransformation] + public partial class StaticDeliveryAttributeMapping : DeliveryAttributeMapping + { + /// + /// Initializes a new instance of the StaticDeliveryAttributeMapping + /// class. + /// + public StaticDeliveryAttributeMapping() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StaticDeliveryAttributeMapping + /// class. + /// + /// Name of the delivery attribute or + /// header. + /// Value of the delivery attribute. + /// Boolean flag to tell if the attribute + /// contains sensitive information . + public StaticDeliveryAttributeMapping(string name = default(string), string value = default(string), bool? isSecret = default(bool?)) + : base(name) + { + Value = value; + IsSecret = isSecret; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets value of the delivery attribute. + /// + [JsonProperty(PropertyName = "properties.value")] + public string Value { get; set; } + + /// + /// Gets or sets boolean flag to tell if the attribute contains + /// sensitive information . + /// + [JsonProperty(PropertyName = "properties.isSecret")] + public bool? IsSecret { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StorageQueueEventSubscriptionDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StorageQueueEventSubscriptionDestination.cs index d4ef3196b932..a861d82846e2 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StorageQueueEventSubscriptionDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StorageQueueEventSubscriptionDestination.cs @@ -42,10 +42,13 @@ public StorageQueueEventSubscriptionDestination() /// The name of the Storage queue under a /// storage account that is the destination of an event /// subscription. - public StorageQueueEventSubscriptionDestination(string resourceId = default(string), string queueName = default(string)) + /// Storage queue message + /// time to live in seconds. + public StorageQueueEventSubscriptionDestination(string resourceId = default(string), string queueName = default(string), long? queueMessageTimeToLiveInSeconds = default(long?)) { ResourceId = resourceId; QueueName = queueName; + QueueMessageTimeToLiveInSeconds = queueMessageTimeToLiveInSeconds; CustomInit(); } @@ -69,5 +72,11 @@ public StorageQueueEventSubscriptionDestination() [JsonProperty(PropertyName = "properties.queueName")] public string QueueName { get; set; } + /// + /// Gets or sets storage queue message time to live in seconds. + /// + [JsonProperty(PropertyName = "properties.queueMessageTimeToLiveInSeconds")] + public long? QueueMessageTimeToLiveInSeconds { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StringNotBeginsWithAdvancedFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StringNotBeginsWithAdvancedFilter.cs new file mode 100644 index 000000000000..d955bdea9798 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StringNotBeginsWithAdvancedFilter.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// StringNotBeginsWith Advanced Filter. + /// + [Newtonsoft.Json.JsonObject("StringNotBeginsWith")] + public partial class StringNotBeginsWithAdvancedFilter : AdvancedFilter + { + /// + /// Initializes a new instance of the StringNotBeginsWithAdvancedFilter + /// class. + /// + public StringNotBeginsWithAdvancedFilter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StringNotBeginsWithAdvancedFilter + /// class. + /// + /// The field/property in the event based on which + /// you want to filter. + /// The set of filter values. + public StringNotBeginsWithAdvancedFilter(string key = default(string), IList values = default(IList)) + : base(key) + { + Values = values; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the set of filter values. + /// + [JsonProperty(PropertyName = "values")] + public IList Values { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StringNotContainsAdvancedFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StringNotContainsAdvancedFilter.cs new file mode 100644 index 000000000000..d388ad51614a --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StringNotContainsAdvancedFilter.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// StringNotContains Advanced Filter. + /// + [Newtonsoft.Json.JsonObject("StringNotContains")] + public partial class StringNotContainsAdvancedFilter : AdvancedFilter + { + /// + /// Initializes a new instance of the StringNotContainsAdvancedFilter + /// class. + /// + public StringNotContainsAdvancedFilter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StringNotContainsAdvancedFilter + /// class. + /// + /// The field/property in the event based on which + /// you want to filter. + /// The set of filter values. + public StringNotContainsAdvancedFilter(string key = default(string), IList values = default(IList)) + : base(key) + { + Values = values; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the set of filter values. + /// + [JsonProperty(PropertyName = "values")] + public IList Values { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StringNotEndsWithAdvancedFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StringNotEndsWithAdvancedFilter.cs new file mode 100644 index 000000000000..0190c9d4499e --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/StringNotEndsWithAdvancedFilter.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// StringNotEndsWith Advanced Filter. + /// + [Newtonsoft.Json.JsonObject("StringNotEndsWith")] + public partial class StringNotEndsWithAdvancedFilter : AdvancedFilter + { + /// + /// Initializes a new instance of the StringNotEndsWithAdvancedFilter + /// class. + /// + public StringNotEndsWithAdvancedFilter() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the StringNotEndsWithAdvancedFilter + /// class. + /// + /// The field/property in the event based on which + /// you want to filter. + /// The set of filter values. + public StringNotEndsWithAdvancedFilter(string key = default(string), IList values = default(IList)) + : base(key) + { + Values = values; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the set of filter values. + /// + [JsonProperty(PropertyName = "values")] + public IList Values { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/SystemData.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/SystemData.cs new file mode 100644 index 000000000000..6c7dc716171c --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/SystemData.cs @@ -0,0 +1,103 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Metadata pertaining to creation and last modification of the resource. + /// + public partial class SystemData + { + /// + /// Initializes a new instance of the SystemData class. + /// + public SystemData() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SystemData class. + /// + /// The identity that created the + /// resource. + /// The type of identity that created the + /// resource. Possible values include: 'User', 'Application', + /// 'ManagedIdentity', 'Key' + /// The timestamp of resource creation + /// (UTC). + /// The identity that last modified the + /// resource. + /// The type of identity that last + /// modified the resource. Possible values include: 'User', + /// 'Application', 'ManagedIdentity', 'Key' + /// The timestamp of resource last + /// modification (UTC) + public SystemData(string createdBy = default(string), string createdByType = default(string), System.DateTime? createdAt = default(System.DateTime?), string lastModifiedBy = default(string), string lastModifiedByType = default(string), System.DateTime? lastModifiedAt = default(System.DateTime?)) + { + CreatedBy = createdBy; + CreatedByType = createdByType; + CreatedAt = createdAt; + LastModifiedBy = lastModifiedBy; + LastModifiedByType = lastModifiedByType; + LastModifiedAt = lastModifiedAt; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the identity that created the resource. + /// + [JsonProperty(PropertyName = "createdBy")] + public string CreatedBy { get; set; } + + /// + /// Gets or sets the type of identity that created the resource. + /// Possible values include: 'User', 'Application', 'ManagedIdentity', + /// 'Key' + /// + [JsonProperty(PropertyName = "createdByType")] + public string CreatedByType { get; set; } + + /// + /// Gets or sets the timestamp of resource creation (UTC). + /// + [JsonProperty(PropertyName = "createdAt")] + public System.DateTime? CreatedAt { get; set; } + + /// + /// Gets or sets the identity that last modified the resource. + /// + [JsonProperty(PropertyName = "lastModifiedBy")] + public string LastModifiedBy { get; set; } + + /// + /// Gets or sets the type of identity that last modified the resource. + /// Possible values include: 'User', 'Application', 'ManagedIdentity', + /// 'Key' + /// + [JsonProperty(PropertyName = "lastModifiedByType")] + public string LastModifiedByType { get; set; } + + /// + /// Gets or sets the timestamp of resource last modification (UTC) + /// + [JsonProperty(PropertyName = "lastModifiedAt")] + public System.DateTime? LastModifiedAt { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/SystemTopic.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/SystemTopic.cs new file mode 100644 index 000000000000..2f030cd064e2 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/SystemTopic.cs @@ -0,0 +1,120 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// EventGrid System Topic. + /// + [Rest.Serialization.JsonTransformation] + public partial class SystemTopic : TrackedResource + { + /// + /// Initializes a new instance of the SystemTopic class. + /// + public SystemTopic() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SystemTopic class. + /// + /// Location of the resource. + /// Fully qualified identifier of the + /// resource. + /// Name of the resource. + /// Type of the resource. + /// Tags of the resource. + /// Provisioning state of the system + /// topic. Possible values include: 'Creating', 'Updating', 'Deleting', + /// 'Succeeded', 'Canceled', 'Failed' + /// Source for the system topic. + /// TopicType for the system topic. + /// Metric resource id for the system + /// topic. + /// Identity information for the + /// resource. + /// The system metadata relating to this + /// resource. + public SystemTopic(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string source = default(string), string topicType = default(string), string metricResourceId = default(string), IdentityInfo identity = default(IdentityInfo), SystemData systemData = default(SystemData)) + : base(location, id, name, type, tags) + { + ProvisioningState = provisioningState; + Source = source; + TopicType = topicType; + MetricResourceId = metricResourceId; + Identity = identity; + SystemData = systemData; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets provisioning state of the system topic. Possible values + /// include: 'Creating', 'Updating', 'Deleting', 'Succeeded', + /// 'Canceled', 'Failed' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; private set; } + + /// + /// Gets or sets source for the system topic. + /// + [JsonProperty(PropertyName = "properties.source")] + public string Source { get; set; } + + /// + /// Gets or sets topicType for the system topic. + /// + [JsonProperty(PropertyName = "properties.topicType")] + public string TopicType { get; set; } + + /// + /// Gets metric resource id for the system topic. + /// + [JsonProperty(PropertyName = "properties.metricResourceId")] + public string MetricResourceId { get; private set; } + + /// + /// Gets or sets identity information for the resource. + /// + [JsonProperty(PropertyName = "identity")] + public IdentityInfo Identity { get; set; } + + /// + /// Gets the system metadata relating to this resource. + /// + [JsonProperty(PropertyName = "systemData")] + public SystemData SystemData { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public override void Validate() + { + base.Validate(); + } + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/SystemTopicUpdateParameters.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/SystemTopicUpdateParameters.cs new file mode 100644 index 000000000000..7109dc732ce6 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/SystemTopicUpdateParameters.cs @@ -0,0 +1,63 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Properties of the System Topic update. + /// + public partial class SystemTopicUpdateParameters + { + /// + /// Initializes a new instance of the SystemTopicUpdateParameters + /// class. + /// + public SystemTopicUpdateParameters() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SystemTopicUpdateParameters + /// class. + /// + /// Tags of the system topic. + /// Resource identity information. + public SystemTopicUpdateParameters(IDictionary tags = default(IDictionary), IdentityInfo identity = default(IdentityInfo)) + { + Tags = tags; + Identity = identity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets tags of the system topic. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + + /// + /// Gets or sets resource identity information. + /// + [JsonProperty(PropertyName = "identity")] + public IdentityInfo Identity { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Topic.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Topic.cs index d22682e62e0c..df2db31f6f96 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Topic.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/Topic.cs @@ -62,7 +62,14 @@ public Topic() /// This can be used to restrict traffic /// from specific IPs instead of all IPs. Note: These are considered /// only if PublicNetworkAccess is enabled. - public Topic(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList privateEndpointConnections = default(IList), string provisioningState = default(string), string endpoint = default(string), string inputSchema = default(string), InputSchemaMapping inputSchemaMapping = default(InputSchemaMapping), string metricResourceId = default(string), string publicNetworkAccess = default(string), IList inboundIpRules = default(IList)) + /// The Sku pricing tier for the topic. + /// Identity information for the + /// resource. + /// Kind of the resource. Possible values include: + /// 'Azure', 'AzureArc' + /// Extended location of the + /// resource. + public Topic(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), IList privateEndpointConnections = default(IList), string provisioningState = default(string), string endpoint = default(string), string inputSchema = default(string), InputSchemaMapping inputSchemaMapping = default(InputSchemaMapping), string metricResourceId = default(string), string publicNetworkAccess = default(string), IList inboundIpRules = default(IList), ResourceSku sku = default(ResourceSku), IdentityInfo identity = default(IdentityInfo), string kind = default(string), ExtendedLocation extendedLocation = default(ExtendedLocation)) : base(location, id, name, type, tags) { PrivateEndpointConnections = privateEndpointConnections; @@ -73,6 +80,10 @@ public Topic() MetricResourceId = metricResourceId; PublicNetworkAccess = publicNetworkAccess; InboundIpRules = inboundIpRules; + Sku = sku; + Identity = identity; + Kind = kind; + ExtendedLocation = extendedLocation; CustomInit(); } @@ -143,6 +154,31 @@ public Topic() [JsonProperty(PropertyName = "properties.inboundIpRules")] public IList InboundIpRules { get; set; } + /// + /// Gets or sets the Sku pricing tier for the topic. + /// + [JsonProperty(PropertyName = "sku")] + public ResourceSku Sku { get; set; } + + /// + /// Gets or sets identity information for the resource. + /// + [JsonProperty(PropertyName = "identity")] + public IdentityInfo Identity { get; set; } + + /// + /// Gets or sets kind of the resource. Possible values include: + /// 'Azure', 'AzureArc' + /// + [JsonProperty(PropertyName = "kind")] + public string Kind { get; set; } + + /// + /// Gets or sets extended location of the resource. + /// + [JsonProperty(PropertyName = "extendedLocation")] + public ExtendedLocation ExtendedLocation { get; set; } + /// /// Validate the object. /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/TopicTypeInfo.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/TopicTypeInfo.cs index 2ebf9ab30e0e..34164e95fd70 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/TopicTypeInfo.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/TopicTypeInfo.cs @@ -51,7 +51,9 @@ public TopicTypeInfo() /// List of locations supported by /// this topic type. /// Source resource format. - public TopicTypeInfo(string id = default(string), string name = default(string), string type = default(string), string provider = default(string), string displayName = default(string), string description = default(string), string resourceRegionType = default(string), string provisioningState = default(string), IList supportedLocations = default(IList), string sourceResourceFormat = default(string)) + /// Supported source + /// scopes. + public TopicTypeInfo(string id = default(string), string name = default(string), string type = default(string), string provider = default(string), string displayName = default(string), string description = default(string), string resourceRegionType = default(string), string provisioningState = default(string), IList supportedLocations = default(IList), string sourceResourceFormat = default(string), IList supportedScopesForSource = default(IList)) : base(id, name, type) { Provider = provider; @@ -61,6 +63,7 @@ public TopicTypeInfo() ProvisioningState = provisioningState; SupportedLocations = supportedLocations; SourceResourceFormat = sourceResourceFormat; + SupportedScopesForSource = supportedScopesForSource; CustomInit(); } @@ -114,5 +117,11 @@ public TopicTypeInfo() [JsonProperty(PropertyName = "properties.sourceResourceFormat")] public string SourceResourceFormat { get; set; } + /// + /// Gets or sets supported source scopes. + /// + [JsonProperty(PropertyName = "properties.supportedScopesForSource")] + public IList SupportedScopesForSource { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/TopicUpdateParameters.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/TopicUpdateParameters.cs index 268ac9df3efb..2335d02c40c4 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/TopicUpdateParameters.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/TopicUpdateParameters.cs @@ -35,6 +35,7 @@ public TopicUpdateParameters() /// Initializes a new instance of the TopicUpdateParameters class. /// /// Tags of the resource. + /// Resource identity information. /// This determines if traffic is /// allowed over public network. By default it is enabled. /// You can further restrict to specific IPs by configuring <seealso @@ -43,11 +44,14 @@ public TopicUpdateParameters() /// This can be used to restrict traffic /// from specific IPs instead of all IPs. Note: These are considered /// only if PublicNetworkAccess is enabled. - public TopicUpdateParameters(IDictionary tags = default(IDictionary), string publicNetworkAccess = default(string), IList inboundIpRules = default(IList)) + /// The Sku pricing tier for the topic. + public TopicUpdateParameters(IDictionary tags = default(IDictionary), IdentityInfo identity = default(IdentityInfo), string publicNetworkAccess = default(string), IList inboundIpRules = default(IList), ResourceSku sku = default(ResourceSku)) { Tags = tags; + Identity = identity; PublicNetworkAccess = publicNetworkAccess; InboundIpRules = inboundIpRules; + Sku = sku; CustomInit(); } @@ -62,6 +66,12 @@ public TopicUpdateParameters() [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } + /// + /// Gets or sets resource identity information. + /// + [JsonProperty(PropertyName = "identity")] + public IdentityInfo Identity { get; set; } + /// /// Gets or sets this determines if traffic is allowed over public /// network. By default it is enabled. @@ -81,5 +91,11 @@ public TopicUpdateParameters() [JsonProperty(PropertyName = "properties.inboundIpRules")] public IList InboundIpRules { get; set; } + /// + /// Gets or sets the Sku pricing tier for the topic. + /// + [JsonProperty(PropertyName = "sku")] + public ResourceSku Sku { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/UserIdentityProperties.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/UserIdentityProperties.cs new file mode 100644 index 000000000000..5fdc4d4ddd9d --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/UserIdentityProperties.cs @@ -0,0 +1,61 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The information about the user identity. + /// + public partial class UserIdentityProperties + { + /// + /// Initializes a new instance of the UserIdentityProperties class. + /// + public UserIdentityProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UserIdentityProperties class. + /// + /// The principal id of user assigned + /// identity. + /// The client id of user assigned + /// identity. + public UserIdentityProperties(string principalId = default(string), string clientId = default(string)) + { + PrincipalId = principalId; + ClientId = clientId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the principal id of user assigned identity. + /// + [JsonProperty(PropertyName = "principalId")] + public string PrincipalId { get; set; } + + /// + /// Gets or sets the client id of user assigned identity. + /// + [JsonProperty(PropertyName = "clientId")] + public string ClientId { get; set; } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/WebHookEventSubscriptionDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/WebHookEventSubscriptionDestination.cs index fb95c06fe24f..ffe074154d2b 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/WebHookEventSubscriptionDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/WebHookEventSubscriptionDestination.cs @@ -13,6 +13,8 @@ namespace Microsoft.Azure.Management.EventGrid.Models using Microsoft.Rest; using Microsoft.Rest.Serialization; using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -49,7 +51,9 @@ public WebHookEventSubscriptionDestination() /// The Azure /// Active Directory Application ID or URI to get the access token that /// will be included as the bearer token in delivery requests. - public WebHookEventSubscriptionDestination(string endpointUrl = default(string), string endpointBaseUrl = default(string), int? maxEventsPerBatch = default(int?), int? preferredBatchSizeInKilobytes = default(int?), string azureActiveDirectoryTenantId = default(string), string azureActiveDirectoryApplicationIdOrUri = default(string)) + /// Delivery attribute + /// details. + public WebHookEventSubscriptionDestination(string endpointUrl = default(string), string endpointBaseUrl = default(string), int? maxEventsPerBatch = default(int?), int? preferredBatchSizeInKilobytes = default(int?), string azureActiveDirectoryTenantId = default(string), string azureActiveDirectoryApplicationIdOrUri = default(string), IList deliveryAttributeMappings = default(IList)) { EndpointUrl = endpointUrl; EndpointBaseUrl = endpointBaseUrl; @@ -57,6 +61,7 @@ public WebHookEventSubscriptionDestination() PreferredBatchSizeInKilobytes = preferredBatchSizeInKilobytes; AzureActiveDirectoryTenantId = azureActiveDirectoryTenantId; AzureActiveDirectoryApplicationIdOrUri = azureActiveDirectoryApplicationIdOrUri; + DeliveryAttributeMappings = deliveryAttributeMappings; CustomInit(); } @@ -107,5 +112,11 @@ public WebHookEventSubscriptionDestination() [JsonProperty(PropertyName = "properties.azureActiveDirectoryApplicationIdOrUri")] public string AzureActiveDirectoryApplicationIdOrUri { get; set; } + /// + /// Gets or sets delivery attribute details. + /// + [JsonProperty(PropertyName = "properties.deliveryAttributeMappings")] + public IList DeliveryAttributeMappings { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerNamespacesOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerNamespacesOperations.cs new file mode 100644 index 000000000000..224ea6bfa48d --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerNamespacesOperations.cs @@ -0,0 +1,2133 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PartnerNamespacesOperations operations. + /// + internal partial class PartnerNamespacesOperations : IServiceOperations, IPartnerNamespacesOperations + { + /// + /// Initializes a new instance of the PartnerNamespacesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PartnerNamespacesOperations(EventGridManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventGridManagementClient + /// + public EventGridManagementClient Client { get; private set; } + + /// + /// Get a partner namespace. + /// + /// + /// Get properties of a partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create a partner namespace. + /// + /// + /// Asynchronously creates a new partner namespace with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// PartnerNamespace information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, PartnerNamespace partnerNamespaceInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, partnerNamespaceInfo, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a partner namespace. + /// + /// + /// Delete existing partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a partner namespace. + /// + /// + /// Asynchronously updates a partner namespace with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Tags of the partner namespace. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, tags, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// List partner namespaces under an Azure subscription. + /// + /// + /// List all the partner namespaces under an Azure subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionWithHttpMessagesAsync(string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.EventGrid/partnerNamespaces").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner namespaces under a resource group. + /// + /// + /// List all the partner namespaces under a resource group. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List keys for a partner namespace. + /// + /// + /// List the two keys used to publish to a partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ListSharedAccessKeysWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListSharedAccessKeys", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}/listKeys").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Regenerate key for a partner namespace. + /// + /// + /// Regenerate a shared access key for a partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Key name to regenerate (key1 or key2). + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (keyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "keyName"); + } + PartnerNamespaceRegenerateKeyRequest regenerateKeyRequest = new PartnerNamespaceRegenerateKeyRequest(); + if (keyName != null) + { + regenerateKeyRequest.KeyName = keyName; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("regenerateKeyRequest", regenerateKeyRequest); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateKey", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}/regenerateKey").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(regenerateKeyRequest != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(regenerateKeyRequest, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create a partner namespace. + /// + /// + /// Asynchronously creates a new partner namespace with the specified + /// parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// PartnerNamespace information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, PartnerNamespace partnerNamespaceInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (partnerNamespaceInfo == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceInfo"); + } + if (partnerNamespaceInfo != null) + { + partnerNamespaceInfo.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("partnerNamespaceInfo", partnerNamespaceInfo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(partnerNamespaceInfo != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(partnerNamespaceInfo, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete a partner namespace. + /// + /// + /// Delete existing partner namespace. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update a partner namespace. + /// + /// + /// Asynchronously updates a partner namespace with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Tags of the partner namespace. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerNamespaceName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerNamespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerNamespaceName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + PartnerNamespaceUpdateParameters partnerNamespaceUpdateParameters = new PartnerNamespaceUpdateParameters(); + if (tags != null) + { + partnerNamespaceUpdateParameters.Tags = tags; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerNamespaceName", partnerNamespaceName); + tracingParameters.Add("partnerNamespaceUpdateParameters", partnerNamespaceUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerNamespaces/{partnerNamespaceName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerNamespaceName}", System.Uri.EscapeDataString(partnerNamespaceName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(partnerNamespaceUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(partnerNamespaceUpdateParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner namespaces under an Azure subscription. + /// + /// + /// List all the partner namespaces under an Azure subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner namespaces under a resource group. + /// + /// + /// List all the partner namespaces under a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerNamespacesOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerNamespacesOperationsExtensions.cs new file mode 100644 index 000000000000..37c6fe07f35a --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerNamespacesOperationsExtensions.cs @@ -0,0 +1,679 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PartnerNamespacesOperations. + /// + public static partial class PartnerNamespacesOperationsExtensions + { + /// + /// Get a partner namespace. + /// + /// + /// Get properties of a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + public static PartnerNamespace Get(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName) + { + return operations.GetAsync(resourceGroupName, partnerNamespaceName).GetAwaiter().GetResult(); + } + + /// + /// Get a partner namespace. + /// + /// + /// Get properties of a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create a partner namespace. + /// + /// + /// Asynchronously creates a new partner namespace with the specified + /// parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// PartnerNamespace information. + /// + public static PartnerNamespace CreateOrUpdate(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, PartnerNamespace partnerNamespaceInfo) + { + return operations.CreateOrUpdateAsync(resourceGroupName, partnerNamespaceName, partnerNamespaceInfo).GetAwaiter().GetResult(); + } + + /// + /// Create a partner namespace. + /// + /// + /// Asynchronously creates a new partner namespace with the specified + /// parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// PartnerNamespace information. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, PartnerNamespace partnerNamespaceInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, partnerNamespaceInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a partner namespace. + /// + /// + /// Delete existing partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + public static void Delete(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName) + { + operations.DeleteAsync(resourceGroupName, partnerNamespaceName).GetAwaiter().GetResult(); + } + + /// + /// Delete a partner namespace. + /// + /// + /// Delete existing partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update a partner namespace. + /// + /// + /// Asynchronously updates a partner namespace with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Tags of the partner namespace. + /// + public static PartnerNamespace Update(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, IDictionary tags = default(IDictionary)) + { + return operations.UpdateAsync(resourceGroupName, partnerNamespaceName, tags).GetAwaiter().GetResult(); + } + + /// + /// Update a partner namespace. + /// + /// + /// Asynchronously updates a partner namespace with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Tags of the partner namespace. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, tags, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner namespaces under an Azure subscription. + /// + /// + /// List all the partner namespaces under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListBySubscription(this IPartnerNamespacesOperations operations, string filter = default(string), int? top = default(int?)) + { + return operations.ListBySubscriptionAsync(filter, top).GetAwaiter().GetResult(); + } + + /// + /// List partner namespaces under an Azure subscription. + /// + /// + /// List all the partner namespaces under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionAsync(this IPartnerNamespacesOperations operations, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner namespaces under a resource group. + /// + /// + /// List all the partner namespaces under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListByResourceGroup(this IPartnerNamespacesOperations operations, string resourceGroupName, string filter = default(string), int? top = default(int?)) + { + return operations.ListByResourceGroupAsync(resourceGroupName, filter, top).GetAwaiter().GetResult(); + } + + /// + /// List partner namespaces under a resource group. + /// + /// + /// List all the partner namespaces under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List keys for a partner namespace. + /// + /// + /// List the two keys used to publish to a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + public static PartnerNamespaceSharedAccessKeys ListSharedAccessKeys(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName) + { + return operations.ListSharedAccessKeysAsync(resourceGroupName, partnerNamespaceName).GetAwaiter().GetResult(); + } + + /// + /// List keys for a partner namespace. + /// + /// + /// List the two keys used to publish to a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The cancellation token. + /// + public static async Task ListSharedAccessKeysAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListSharedAccessKeysWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Regenerate key for a partner namespace. + /// + /// + /// Regenerate a shared access key for a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Key name to regenerate (key1 or key2). + /// + public static PartnerNamespaceSharedAccessKeys RegenerateKey(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, string keyName) + { + return operations.RegenerateKeyAsync(resourceGroupName, partnerNamespaceName, keyName).GetAwaiter().GetResult(); + } + + /// + /// Regenerate key for a partner namespace. + /// + /// + /// Regenerate a shared access key for a partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Key name to regenerate (key1 or key2). + /// + /// + /// The cancellation token. + /// + public static async Task RegenerateKeyAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, string keyName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.RegenerateKeyWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, keyName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create a partner namespace. + /// + /// + /// Asynchronously creates a new partner namespace with the specified + /// parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// PartnerNamespace information. + /// + public static PartnerNamespace BeginCreateOrUpdate(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, PartnerNamespace partnerNamespaceInfo) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, partnerNamespaceName, partnerNamespaceInfo).GetAwaiter().GetResult(); + } + + /// + /// Create a partner namespace. + /// + /// + /// Asynchronously creates a new partner namespace with the specified + /// parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// PartnerNamespace information. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, PartnerNamespace partnerNamespaceInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, partnerNamespaceInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a partner namespace. + /// + /// + /// Delete existing partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + public static void BeginDelete(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName) + { + operations.BeginDeleteAsync(resourceGroupName, partnerNamespaceName).GetAwaiter().GetResult(); + } + + /// + /// Delete a partner namespace. + /// + /// + /// Delete existing partner namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update a partner namespace. + /// + /// + /// Asynchronously updates a partner namespace with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Tags of the partner namespace. + /// + public static PartnerNamespace BeginUpdate(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, IDictionary tags = default(IDictionary)) + { + return operations.BeginUpdateAsync(resourceGroupName, partnerNamespaceName, tags).GetAwaiter().GetResult(); + } + + /// + /// Update a partner namespace. + /// + /// + /// Asynchronously updates a partner namespace with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner namespace. + /// + /// + /// Tags of the partner namespace. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IPartnerNamespacesOperations operations, string resourceGroupName, string partnerNamespaceName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, partnerNamespaceName, tags, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner namespaces under an Azure subscription. + /// + /// + /// List all the partner namespaces under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListBySubscriptionNext(this IPartnerNamespacesOperations operations, string nextPageLink) + { + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List partner namespaces under an Azure subscription. + /// + /// + /// List all the partner namespaces under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionNextAsync(this IPartnerNamespacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner namespaces under a resource group. + /// + /// + /// List all the partner namespaces under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IPartnerNamespacesOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List partner namespaces under a resource group. + /// + /// + /// List all the partner namespaces under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IPartnerNamespacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerRegistrationsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerRegistrationsOperations.cs new file mode 100644 index 000000000000..81fd633c0b60 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerRegistrationsOperations.cs @@ -0,0 +1,1826 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PartnerRegistrationsOperations operations. + /// + internal partial class PartnerRegistrationsOperations : IServiceOperations, IPartnerRegistrationsOperations + { + /// + /// Initializes a new instance of the PartnerRegistrationsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PartnerRegistrationsOperations(EventGridManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventGridManagementClient + /// + public EventGridManagementClient Client { get; private set; } + + /// + /// Get a partner registration. + /// + /// + /// Gets a partner registration with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerRegistrationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerRegistrationName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerRegistrationName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerRegistrationName", partnerRegistrationName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerRegistrationName}", System.Uri.EscapeDataString(partnerRegistrationName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create a partner registration. + /// + /// + /// Creates a new partner registration with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// PartnerRegistration information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerRegistrationName, PartnerRegistration partnerRegistrationInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerRegistrationName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerRegistrationName"); + } + if (partnerRegistrationInfo == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerRegistrationInfo"); + } + if (partnerRegistrationInfo != null) + { + partnerRegistrationInfo.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerRegistrationName", partnerRegistrationName); + tracingParameters.Add("partnerRegistrationInfo", partnerRegistrationInfo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerRegistrationName}", System.Uri.EscapeDataString(partnerRegistrationName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(partnerRegistrationInfo != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(partnerRegistrationInfo, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 202) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete a partner registration. + /// + /// + /// Deletes a partner registration with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerRegistrationName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerRegistrationName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerRegistrationName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerRegistrationName", partnerRegistrationName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerRegistrationName}", System.Uri.EscapeDataString(partnerRegistrationName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update a partner registration. + /// + /// + /// Updates a partner registration with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// Partner registration update information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string partnerRegistrationName, PartnerRegistrationUpdateParameters partnerRegistrationUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerRegistrationName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerRegistrationName"); + } + if (partnerRegistrationUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerRegistrationUpdateParameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerRegistrationName", partnerRegistrationName); + tracingParameters.Add("partnerRegistrationUpdateParameters", partnerRegistrationUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations/{partnerRegistrationName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerRegistrationName}", System.Uri.EscapeDataString(partnerRegistrationName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(partnerRegistrationUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(partnerRegistrationUpdateParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner registrations under an Azure subscription. + /// + /// + /// List all the partner registrations under an Azure subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionWithHttpMessagesAsync(string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.EventGrid/partnerRegistrations").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner registrations under a resource group. + /// + /// + /// List all the partner registrations under a resource group. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerRegistrations").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List all available partners registrations. + /// + /// + /// List all partners registrations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.EventGrid/partnerRegistrations").ToString(); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner registrations under an Azure subscription. + /// + /// + /// List all the partner registrations under an Azure subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner registrations under a resource group. + /// + /// + /// List all the partner registrations under a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerRegistrationsOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerRegistrationsOperationsExtensions.cs new file mode 100644 index 000000000000..184a2024b381 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerRegistrationsOperationsExtensions.cs @@ -0,0 +1,464 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PartnerRegistrationsOperations. + /// + public static partial class PartnerRegistrationsOperationsExtensions + { + /// + /// Get a partner registration. + /// + /// + /// Gets a partner registration with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + public static PartnerRegistration Get(this IPartnerRegistrationsOperations operations, string resourceGroupName, string partnerRegistrationName) + { + return operations.GetAsync(resourceGroupName, partnerRegistrationName).GetAwaiter().GetResult(); + } + + /// + /// Get a partner registration. + /// + /// + /// Gets a partner registration with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IPartnerRegistrationsOperations operations, string resourceGroupName, string partnerRegistrationName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, partnerRegistrationName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create a partner registration. + /// + /// + /// Creates a new partner registration with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// PartnerRegistration information. + /// + public static PartnerRegistration CreateOrUpdate(this IPartnerRegistrationsOperations operations, string resourceGroupName, string partnerRegistrationName, PartnerRegistration partnerRegistrationInfo) + { + return operations.CreateOrUpdateAsync(resourceGroupName, partnerRegistrationName, partnerRegistrationInfo).GetAwaiter().GetResult(); + } + + /// + /// Create a partner registration. + /// + /// + /// Creates a new partner registration with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// PartnerRegistration information. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IPartnerRegistrationsOperations operations, string resourceGroupName, string partnerRegistrationName, PartnerRegistration partnerRegistrationInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, partnerRegistrationName, partnerRegistrationInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a partner registration. + /// + /// + /// Deletes a partner registration with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + public static void Delete(this IPartnerRegistrationsOperations operations, string resourceGroupName, string partnerRegistrationName) + { + operations.DeleteAsync(resourceGroupName, partnerRegistrationName).GetAwaiter().GetResult(); + } + + /// + /// Delete a partner registration. + /// + /// + /// Deletes a partner registration with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IPartnerRegistrationsOperations operations, string resourceGroupName, string partnerRegistrationName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, partnerRegistrationName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update a partner registration. + /// + /// + /// Updates a partner registration with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// Partner registration update information. + /// + public static PartnerRegistration Update(this IPartnerRegistrationsOperations operations, string resourceGroupName, string partnerRegistrationName, PartnerRegistrationUpdateParameters partnerRegistrationUpdateParameters) + { + return operations.UpdateAsync(resourceGroupName, partnerRegistrationName, partnerRegistrationUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update a partner registration. + /// + /// + /// Updates a partner registration with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner registration. + /// + /// + /// Partner registration update information. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IPartnerRegistrationsOperations operations, string resourceGroupName, string partnerRegistrationName, PartnerRegistrationUpdateParameters partnerRegistrationUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, partnerRegistrationName, partnerRegistrationUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner registrations under an Azure subscription. + /// + /// + /// List all the partner registrations under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListBySubscription(this IPartnerRegistrationsOperations operations, string filter = default(string), int? top = default(int?)) + { + return operations.ListBySubscriptionAsync(filter, top).GetAwaiter().GetResult(); + } + + /// + /// List partner registrations under an Azure subscription. + /// + /// + /// List all the partner registrations under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionAsync(this IPartnerRegistrationsOperations operations, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner registrations under a resource group. + /// + /// + /// List all the partner registrations under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListByResourceGroup(this IPartnerRegistrationsOperations operations, string resourceGroupName, string filter = default(string), int? top = default(int?)) + { + return operations.ListByResourceGroupAsync(resourceGroupName, filter, top).GetAwaiter().GetResult(); + } + + /// + /// List partner registrations under a resource group. + /// + /// + /// List all the partner registrations under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IPartnerRegistrationsOperations operations, string resourceGroupName, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List all available partners registrations. + /// + /// + /// List all partners registrations. + /// + /// + /// The operations group for this extension method. + /// + public static IEnumerable List(this IPartnerRegistrationsOperations operations) + { + return operations.ListAsync().GetAwaiter().GetResult(); + } + + /// + /// List all available partners registrations. + /// + /// + /// List all partners registrations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListAsync(this IPartnerRegistrationsOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner registrations under an Azure subscription. + /// + /// + /// List all the partner registrations under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListBySubscriptionNext(this IPartnerRegistrationsOperations operations, string nextPageLink) + { + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List partner registrations under an Azure subscription. + /// + /// + /// List all the partner registrations under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionNextAsync(this IPartnerRegistrationsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner registrations under a resource group. + /// + /// + /// List all the partner registrations under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IPartnerRegistrationsOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List partner registrations under a resource group. + /// + /// + /// List all the partner registrations under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IPartnerRegistrationsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicEventSubscriptionsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicEventSubscriptionsOperations.cs new file mode 100644 index 000000000000..df3f5ccc9bdf --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicEventSubscriptionsOperations.cs @@ -0,0 +1,1822 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PartnerTopicEventSubscriptionsOperations operations. + /// + internal partial class PartnerTopicEventSubscriptionsOperations : IServiceOperations, IPartnerTopicEventSubscriptionsOperations + { + /// + /// Initializes a new instance of the PartnerTopicEventSubscriptionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PartnerTopicEventSubscriptionsOperations(EventGridManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventGridManagementClient + /// + public EventGridManagementClient Client { get; private set; } + + /// + /// Get an event subscription of a partner topic. + /// + /// + /// Get an event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be found. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}/eventSubscriptions/{eventSubscriptionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or update an event subscription of a partner topic. + /// + /// + /// Asynchronously creates or updates an event subscription of a partner topic + /// with the specified parameters. Existing event subscriptions will be updated + /// with this API. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionInfo, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update event subscription of a partner topic. + /// + /// + /// Update event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Get full URL of an event subscription of a partner topic. + /// + /// + /// Get the full endpoint URL for an event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetFullUrlWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetFullUrl", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}/eventSubscriptions/{eventSubscriptionName}/getFullUrl").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List event subscriptions of a partner topic. + /// + /// + /// List event subscriptions that belong to a specific partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByPartnerTopicWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByPartnerTopic", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}/eventSubscriptions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Get delivery attributes for an event subscription of a partner topic. + /// + /// + /// Get all delivery attributes for an event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetDeliveryAttributesWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetDeliveryAttributes", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}/eventSubscriptions/{eventSubscriptionName}/getDeliveryAttributes").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or update an event subscription of a partner topic. + /// + /// + /// Asynchronously creates or updates an event subscription of a partner topic + /// with the specified parameters. Existing event subscriptions will be updated + /// with this API. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (eventSubscriptionInfo == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionInfo"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("eventSubscriptionInfo", eventSubscriptionInfo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}/eventSubscriptions/{eventSubscriptionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(eventSubscriptionInfo != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(eventSubscriptionInfo, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}/eventSubscriptions/{eventSubscriptionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update event subscription of a partner topic. + /// + /// + /// Update event subscription of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (eventSubscriptionUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionUpdateParameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("eventSubscriptionUpdateParameters", eventSubscriptionUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}/eventSubscriptions/{eventSubscriptionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(eventSubscriptionUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(eventSubscriptionUpdateParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List event subscriptions of a partner topic. + /// + /// + /// List event subscriptions that belong to a specific partner topic. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByPartnerTopicNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByPartnerTopicNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicEventSubscriptionsOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicEventSubscriptionsOperationsExtensions.cs new file mode 100644 index 000000000000..4324b5b3754d --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicEventSubscriptionsOperationsExtensions.cs @@ -0,0 +1,673 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PartnerTopicEventSubscriptionsOperations. + /// + public static partial class PartnerTopicEventSubscriptionsOperationsExtensions + { + /// + /// Get an event subscription of a partner topic. + /// + /// + /// Get an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be found. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static EventSubscription Get(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName) + { + return operations.GetAsync(resourceGroupName, partnerTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Get an event subscription of a partner topic. + /// + /// + /// Get an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be found. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update an event subscription of a partner topic. + /// + /// + /// Asynchronously creates or updates an event subscription of a partner topic + /// with the specified parameters. Existing event subscriptions will be updated + /// with this API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + public static EventSubscription CreateOrUpdate(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo) + { + return operations.CreateOrUpdateAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionInfo).GetAwaiter().GetResult(); + } + + /// + /// Create or update an event subscription of a partner topic. + /// + /// + /// Asynchronously creates or updates an event subscription of a partner topic + /// with the specified parameters. Existing event subscriptions will be updated + /// with this API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static void Delete(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName) + { + operations.DeleteAsync(resourceGroupName, partnerTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update event subscription of a partner topic. + /// + /// + /// Update event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + public static EventSubscription Update(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters) + { + return operations.UpdateAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update event subscription of a partner topic. + /// + /// + /// Update event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get full URL of an event subscription of a partner topic. + /// + /// + /// Get the full endpoint URL for an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static EventSubscriptionFullUrl GetFullUrl(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName) + { + return operations.GetFullUrlAsync(resourceGroupName, partnerTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Get full URL of an event subscription of a partner topic. + /// + /// + /// Get the full endpoint URL for an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task GetFullUrlAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetFullUrlWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List event subscriptions of a partner topic. + /// + /// + /// List event subscriptions that belong to a specific partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListByPartnerTopic(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string filter = default(string), int? top = default(int?)) + { + return operations.ListByPartnerTopicAsync(resourceGroupName, partnerTopicName, filter, top).GetAwaiter().GetResult(); + } + + /// + /// List event subscriptions of a partner topic. + /// + /// + /// List event subscriptions that belong to a specific partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByPartnerTopicAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByPartnerTopicWithHttpMessagesAsync(resourceGroupName, partnerTopicName, filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get delivery attributes for an event subscription of a partner topic. + /// + /// + /// Get all delivery attributes for an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static DeliveryAttributeListResult GetDeliveryAttributes(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName) + { + return operations.GetDeliveryAttributesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Get delivery attributes for an event subscription of a partner topic. + /// + /// + /// Get all delivery attributes for an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task GetDeliveryAttributesAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeliveryAttributesWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update an event subscription of a partner topic. + /// + /// + /// Asynchronously creates or updates an event subscription of a partner topic + /// with the specified parameters. Existing event subscriptions will be updated + /// with this API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + public static EventSubscription BeginCreateOrUpdate(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionInfo).GetAwaiter().GetResult(); + } + + /// + /// Create or update an event subscription of a partner topic. + /// + /// + /// Asynchronously creates or updates an event subscription of a partner topic + /// with the specified parameters. Existing event subscriptions will be updated + /// with this API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static void BeginDelete(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName) + { + operations.BeginDeleteAsync(resourceGroupName, partnerTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// Delete an event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update event subscription of a partner topic. + /// + /// + /// Update event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + public static EventSubscription BeginUpdate(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters) + { + return operations.BeginUpdateAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update event subscription of a partner topic. + /// + /// + /// Update event subscription of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this IPartnerTopicEventSubscriptionsOperations operations, string resourceGroupName, string partnerTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, partnerTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List event subscriptions of a partner topic. + /// + /// + /// List event subscriptions that belong to a specific partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByPartnerTopicNext(this IPartnerTopicEventSubscriptionsOperations operations, string nextPageLink) + { + return operations.ListByPartnerTopicNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List event subscriptions of a partner topic. + /// + /// + /// List event subscriptions that belong to a specific partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByPartnerTopicNextAsync(this IPartnerTopicEventSubscriptionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByPartnerTopicNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicsOperations.cs new file mode 100644 index 000000000000..bf86b49676d7 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicsOperations.cs @@ -0,0 +1,1839 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PartnerTopicsOperations operations. + /// + internal partial class PartnerTopicsOperations : IServiceOperations, IPartnerTopicsOperations + { + /// + /// Initializes a new instance of the PartnerTopicsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PartnerTopicsOperations(EventGridManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventGridManagementClient + /// + public EventGridManagementClient Client { get; private set; } + + /// + /// Get a partner topic. + /// + /// + /// Get properties of a partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete a partner topic. + /// + /// + /// Delete existing partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, partnerTopicName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a partner topic. + /// + /// + /// Asynchronously updates a partner topic with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Tags of the partner topic. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, IDictionary tags = default(IDictionary), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + PartnerTopicUpdateParameters partnerTopicUpdateParameters = new PartnerTopicUpdateParameters(); + if (tags != null) + { + partnerTopicUpdateParameters.Tags = tags; + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("partnerTopicUpdateParameters", partnerTopicUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(partnerTopicUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(partnerTopicUpdateParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner topics under an Azure subscription. + /// + /// + /// List all the partner topics under an Azure subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionWithHttpMessagesAsync(string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.EventGrid/partnerTopics").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner topics under a resource group. + /// + /// + /// List all the partner topics under a resource group. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Activate a partner topic. + /// + /// + /// Activate a newly created partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> ActivateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Activate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}/activate").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deactivate a partner topic. + /// + /// + /// Deactivate specific partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> DeactivateWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Deactivate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}/deactivate").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete a partner topic. + /// + /// + /// Delete existing partner topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string partnerTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (partnerTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "partnerTopicName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("partnerTopicName", partnerTopicName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/partnerTopics/{partnerTopicName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{partnerTopicName}", System.Uri.EscapeDataString(partnerTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner topics under an Azure subscription. + /// + /// + /// List all the partner topics under an Azure subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List partner topics under a resource group. + /// + /// + /// List all the partner topics under a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicsOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicsOperationsExtensions.cs new file mode 100644 index 000000000000..8e5b32dc1dc5 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/PartnerTopicsOperationsExtensions.cs @@ -0,0 +1,513 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PartnerTopicsOperations. + /// + public static partial class PartnerTopicsOperationsExtensions + { + /// + /// Get a partner topic. + /// + /// + /// Get properties of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + public static PartnerTopic Get(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName) + { + return operations.GetAsync(resourceGroupName, partnerTopicName).GetAwaiter().GetResult(); + } + + /// + /// Get a partner topic. + /// + /// + /// Get properties of a partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, partnerTopicName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a partner topic. + /// + /// + /// Delete existing partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + public static void Delete(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName) + { + operations.DeleteAsync(resourceGroupName, partnerTopicName).GetAwaiter().GetResult(); + } + + /// + /// Delete a partner topic. + /// + /// + /// Delete existing partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, partnerTopicName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update a partner topic. + /// + /// + /// Asynchronously updates a partner topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Tags of the partner topic. + /// + public static PartnerTopic Update(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName, IDictionary tags = default(IDictionary)) + { + return operations.UpdateAsync(resourceGroupName, partnerTopicName, tags).GetAwaiter().GetResult(); + } + + /// + /// Update a partner topic. + /// + /// + /// Asynchronously updates a partner topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// Tags of the partner topic. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName, IDictionary tags = default(IDictionary), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, partnerTopicName, tags, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner topics under an Azure subscription. + /// + /// + /// List all the partner topics under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListBySubscription(this IPartnerTopicsOperations operations, string filter = default(string), int? top = default(int?)) + { + return operations.ListBySubscriptionAsync(filter, top).GetAwaiter().GetResult(); + } + + /// + /// List partner topics under an Azure subscription. + /// + /// + /// List all the partner topics under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionAsync(this IPartnerTopicsOperations operations, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner topics under a resource group. + /// + /// + /// List all the partner topics under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListByResourceGroup(this IPartnerTopicsOperations operations, string resourceGroupName, string filter = default(string), int? top = default(int?)) + { + return operations.ListByResourceGroupAsync(resourceGroupName, filter, top).GetAwaiter().GetResult(); + } + + /// + /// List partner topics under a resource group. + /// + /// + /// List all the partner topics under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IPartnerTopicsOperations operations, string resourceGroupName, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Activate a partner topic. + /// + /// + /// Activate a newly created partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + public static PartnerTopic Activate(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName) + { + return operations.ActivateAsync(resourceGroupName, partnerTopicName).GetAwaiter().GetResult(); + } + + /// + /// Activate a partner topic. + /// + /// + /// Activate a newly created partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The cancellation token. + /// + public static async Task ActivateAsync(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ActivateWithHttpMessagesAsync(resourceGroupName, partnerTopicName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deactivate a partner topic. + /// + /// + /// Deactivate specific partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + public static PartnerTopic Deactivate(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName) + { + return operations.DeactivateAsync(resourceGroupName, partnerTopicName).GetAwaiter().GetResult(); + } + + /// + /// Deactivate a partner topic. + /// + /// + /// Deactivate specific partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The cancellation token. + /// + public static async Task DeactivateAsync(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DeactivateWithHttpMessagesAsync(resourceGroupName, partnerTopicName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a partner topic. + /// + /// + /// Delete existing partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + public static void BeginDelete(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName) + { + operations.BeginDeleteAsync(resourceGroupName, partnerTopicName).GetAwaiter().GetResult(); + } + + /// + /// Delete a partner topic. + /// + /// + /// Delete existing partner topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the partner topic. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IPartnerTopicsOperations operations, string resourceGroupName, string partnerTopicName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, partnerTopicName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// List partner topics under an Azure subscription. + /// + /// + /// List all the partner topics under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListBySubscriptionNext(this IPartnerTopicsOperations operations, string nextPageLink) + { + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List partner topics under an Azure subscription. + /// + /// + /// List all the partner topics under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionNextAsync(this IPartnerTopicsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List partner topics under a resource group. + /// + /// + /// List all the partner topics under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IPartnerTopicsOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List partner topics under a resource group. + /// + /// + /// List all the partner topics under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this IPartnerTopicsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SdkInfo_EventGridManagementClient.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SdkInfo_EventGridManagementClient.cs index 45ab9537aa98..5874a983349f 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SdkInfo_EventGridManagementClient.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SdkInfo_EventGridManagementClient.cs @@ -19,24 +19,32 @@ public static IEnumerable> ApiInfo_EventGridManage { return new Tuple[] { - new Tuple("EventGrid", "DomainTopics", "2020-06-01"), - new Tuple("EventGrid", "Domains", "2020-06-01"), - new Tuple("EventGrid", "EventSubscriptions", "2020-06-01"), - new Tuple("EventGrid", "Operations", "2020-06-01"), - new Tuple("EventGrid", "PrivateEndpointConnections", "2020-06-01"), - new Tuple("EventGrid", "PrivateLinkResources", "2020-06-01"), - new Tuple("EventGrid", "TopicTypes", "2020-06-01"), - new Tuple("EventGrid", "Topics", "2020-06-01"), + new Tuple("EventGrid", "DomainTopics", "2020-10-15-preview"), + new Tuple("EventGrid", "Domains", "2020-10-15-preview"), + new Tuple("EventGrid", "EventChannels", "2020-10-15-preview"), + new Tuple("EventGrid", "EventSubscriptions", "2020-10-15-preview"), + new Tuple("EventGrid", "ExtensionTopics", "2020-10-15-preview"), + new Tuple("EventGrid", "Operations", "2020-10-15-preview"), + new Tuple("EventGrid", "PartnerNamespaces", "2020-10-15-preview"), + new Tuple("EventGrid", "PartnerRegistrations", "2020-10-15-preview"), + new Tuple("EventGrid", "PartnerTopicEventSubscriptions", "2020-10-15-preview"), + new Tuple("EventGrid", "PartnerTopics", "2020-10-15-preview"), + new Tuple("EventGrid", "PrivateEndpointConnections", "2020-10-15-preview"), + new Tuple("EventGrid", "PrivateLinkResources", "2020-10-15-preview"), + new Tuple("EventGrid", "SystemTopicEventSubscriptions", "2020-10-15-preview"), + new Tuple("EventGrid", "SystemTopics", "2020-10-15-preview"), + new Tuple("EventGrid", "TopicTypes", "2020-10-15-preview"), + new Tuple("EventGrid", "Topics", "2020-10-15-preview"), }.AsEnumerable(); } } // BEGIN: Code Generation Metadata Section public static readonly String AutoRestVersion = "v2"; public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/eventgrid/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\\build2020\\net1\\azure-sdk-for-net\\sdk"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/eventgrid/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\github\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "e3e0fff3be9befda4fd2cc18ee355b88b024fac7"; + public static readonly String GithubCommidId = "a1eee0489c374782a934ec1f093abd16fa7718ca"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicEventSubscriptionsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicEventSubscriptionsOperations.cs new file mode 100644 index 000000000000..e0189270e1c0 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicEventSubscriptionsOperations.cs @@ -0,0 +1,1820 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SystemTopicEventSubscriptionsOperations operations. + /// + internal partial class SystemTopicEventSubscriptionsOperations : IServiceOperations, ISystemTopicEventSubscriptionsOperations + { + /// + /// Initializes a new instance of the SystemTopicEventSubscriptionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SystemTopicEventSubscriptionsOperations(EventGridManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventGridManagementClient + /// + public EventGridManagementClient Client { get; private set; } + + /// + /// Get an event subscription of a system topic. + /// + /// + /// Get an event subscription. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}/eventSubscriptions/{eventSubscriptionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or update an event subscription for a system topic. + /// + /// + /// Asynchronously creates or updates an event subscription with the specified + /// parameters. Existing event subscriptions will be updated with this API. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionInfo, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete an event subscription of a system topic. + /// + /// + /// Delete an event subscription of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update event subscription of a system topic. + /// + /// + /// Update event subscription of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Get full URL of an event subscription of a system topic + /// + /// + /// Get the full endpoint URL for an event subscription of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetFullUrlWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetFullUrl", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}/eventSubscriptions/{eventSubscriptionName}/getFullUrl").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List event subscriptions of a system topic. + /// + /// + /// List event subscriptions that belong to a specific system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySystemTopicWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySystemTopic", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}/eventSubscriptions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Get delivery attributes for an event subscription. + /// + /// + /// Get all delivery attributes for an event subscription. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetDeliveryAttributesWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetDeliveryAttributes", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}/eventSubscriptions/{eventSubscriptionName}/getDeliveryAttributes").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create or update an event subscription for a system topic. + /// + /// + /// Asynchronously creates or updates an event subscription with the specified + /// parameters. Existing event subscriptions will be updated with this API. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (eventSubscriptionInfo == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionInfo"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("eventSubscriptionInfo", eventSubscriptionInfo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}/eventSubscriptions/{eventSubscriptionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(eventSubscriptionInfo != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(eventSubscriptionInfo, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete an event subscription of a system topic. + /// + /// + /// Delete an event subscription of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}/eventSubscriptions/{eventSubscriptionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update event subscription of a system topic. + /// + /// + /// Update event subscription of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (eventSubscriptionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionName"); + } + if (eventSubscriptionUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "eventSubscriptionUpdateParameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("eventSubscriptionName", eventSubscriptionName); + tracingParameters.Add("eventSubscriptionUpdateParameters", eventSubscriptionUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}/eventSubscriptions/{eventSubscriptionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + _url = _url.Replace("{eventSubscriptionName}", System.Uri.EscapeDataString(eventSubscriptionName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(eventSubscriptionUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(eventSubscriptionUpdateParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List event subscriptions of a system topic. + /// + /// + /// List event subscriptions that belong to a specific system topic. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySystemTopicNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySystemTopicNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicEventSubscriptionsOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicEventSubscriptionsOperationsExtensions.cs new file mode 100644 index 000000000000..e0cd40093816 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicEventSubscriptionsOperationsExtensions.cs @@ -0,0 +1,669 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SystemTopicEventSubscriptionsOperations. + /// + public static partial class SystemTopicEventSubscriptionsOperationsExtensions + { + /// + /// Get an event subscription of a system topic. + /// + /// + /// Get an event subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static EventSubscription Get(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName) + { + return operations.GetAsync(resourceGroupName, systemTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Get an event subscription of a system topic. + /// + /// + /// Get an event subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update an event subscription for a system topic. + /// + /// + /// Asynchronously creates or updates an event subscription with the specified + /// parameters. Existing event subscriptions will be updated with this API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + public static EventSubscription CreateOrUpdate(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo) + { + return operations.CreateOrUpdateAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionInfo).GetAwaiter().GetResult(); + } + + /// + /// Create or update an event subscription for a system topic. + /// + /// + /// Asynchronously creates or updates an event subscription with the specified + /// parameters. Existing event subscriptions will be updated with this API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete an event subscription of a system topic. + /// + /// + /// Delete an event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static void Delete(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName) + { + operations.DeleteAsync(resourceGroupName, systemTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Delete an event subscription of a system topic. + /// + /// + /// Delete an event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update event subscription of a system topic. + /// + /// + /// Update event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + public static EventSubscription Update(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters) + { + return operations.UpdateAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update event subscription of a system topic. + /// + /// + /// Update event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get full URL of an event subscription of a system topic + /// + /// + /// Get the full endpoint URL for an event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static EventSubscriptionFullUrl GetFullUrl(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName) + { + return operations.GetFullUrlAsync(resourceGroupName, systemTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Get full URL of an event subscription of a system topic + /// + /// + /// Get the full endpoint URL for an event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task GetFullUrlAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetFullUrlWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List event subscriptions of a system topic. + /// + /// + /// List event subscriptions that belong to a specific system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListBySystemTopic(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string filter = default(string), int? top = default(int?)) + { + return operations.ListBySystemTopicAsync(resourceGroupName, systemTopicName, filter, top).GetAwaiter().GetResult(); + } + + /// + /// List event subscriptions of a system topic. + /// + /// + /// List event subscriptions that belong to a specific system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySystemTopicAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySystemTopicWithHttpMessagesAsync(resourceGroupName, systemTopicName, filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get delivery attributes for an event subscription. + /// + /// + /// Get all delivery attributes for an event subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static DeliveryAttributeListResult GetDeliveryAttributes(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName) + { + return operations.GetDeliveryAttributesAsync(resourceGroupName, systemTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Get delivery attributes for an event subscription. + /// + /// + /// Get all delivery attributes for an event subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task GetDeliveryAttributesAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetDeliveryAttributesWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update an event subscription for a system topic. + /// + /// + /// Asynchronously creates or updates an event subscription with the specified + /// parameters. Existing event subscriptions will be updated with this API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + public static EventSubscription BeginCreateOrUpdate(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionInfo).GetAwaiter().GetResult(); + } + + /// + /// Create or update an event subscription for a system topic. + /// + /// + /// Asynchronously creates or updates an event subscription with the specified + /// parameters. Existing event subscriptions will be updated with this API. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Event subscription properties containing the destination and filter + /// information. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscription eventSubscriptionInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete an event subscription of a system topic. + /// + /// + /// Delete an event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + public static void BeginDelete(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName) + { + operations.BeginDeleteAsync(resourceGroupName, systemTopicName, eventSubscriptionName).GetAwaiter().GetResult(); + } + + /// + /// Delete an event subscription of a system topic. + /// + /// + /// Delete an event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update event subscription of a system topic. + /// + /// + /// Update event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + public static EventSubscription BeginUpdate(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters) + { + return operations.BeginUpdateAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update event subscription of a system topic. + /// + /// + /// Update event subscription of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Name of the event subscription to be created. Event subscription names must + /// be between 3 and 100 characters in length and use alphanumeric letters + /// only. + /// + /// + /// Updated event subscription information. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this ISystemTopicEventSubscriptionsOperations operations, string resourceGroupName, string systemTopicName, string eventSubscriptionName, EventSubscriptionUpdateParameters eventSubscriptionUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, eventSubscriptionName, eventSubscriptionUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List event subscriptions of a system topic. + /// + /// + /// List event subscriptions that belong to a specific system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListBySystemTopicNext(this ISystemTopicEventSubscriptionsOperations operations, string nextPageLink) + { + return operations.ListBySystemTopicNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List event subscriptions of a system topic. + /// + /// + /// List event subscriptions that belong to a specific system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySystemTopicNextAsync(this ISystemTopicEventSubscriptionsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySystemTopicNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicsOperations.cs new file mode 100644 index 000000000000..d69e20b3f8b4 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicsOperations.cs @@ -0,0 +1,1749 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// SystemTopicsOperations operations. + /// + internal partial class SystemTopicsOperations : IServiceOperations, ISystemTopicsOperations + { + /// + /// Initializes a new instance of the SystemTopicsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal SystemTopicsOperations(EventGridManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventGridManagementClient + /// + public EventGridManagementClient Client { get; private set; } + + /// + /// Get a system topic. + /// + /// + /// Get properties of a system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create a system topic. + /// + /// + /// Asynchronously creates a new system topic with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// System Topic information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, SystemTopic systemTopicInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, systemTopicInfo, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Delete a system topic. + /// + /// + /// Delete existing system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, systemTopicName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Update a system topic. + /// + /// + /// Asynchronously updates a system topic with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// SystemTopic update information. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, SystemTopicUpdateParameters systemTopicUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, systemTopicUpdateParameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// List system topics under an Azure subscription. + /// + /// + /// List all the system topics under an Azure subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionWithHttpMessagesAsync(string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.EventGrid/systemTopics").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List system topics under a resource group. + /// + /// + /// List all the system topics under a resource group. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, string filter = default(string), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("filter", filter); + tracingParameters.Add("top", top); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (filter != null) + { + _queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Create a system topic. + /// + /// + /// Asynchronously creates a new system topic with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// System Topic information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, SystemTopic systemTopicInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (systemTopicInfo == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicInfo"); + } + if (systemTopicInfo != null) + { + systemTopicInfo.Validate(); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("systemTopicInfo", systemTopicInfo); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(systemTopicInfo != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(systemTopicInfo, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Delete a system topic. + /// + /// + /// Delete existing system topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Update a system topic. + /// + /// + /// Asynchronously updates a system topic with the specified parameters. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// SystemTopic update information. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string systemTopicName, SystemTopicUpdateParameters systemTopicUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (systemTopicName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicName"); + } + if (systemTopicUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "systemTopicUpdateParameters"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("systemTopicName", systemTopicName); + tracingParameters.Add("systemTopicUpdateParameters", systemTopicUpdateParameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/systemTopics/{systemTopicName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{systemTopicName}", System.Uri.EscapeDataString(systemTopicName)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(systemTopicUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(systemTopicUpdateParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200 && (int)_statusCode != 201) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List system topics under an Azure subscription. + /// + /// + /// List all the system topics under an Azure subscription. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListBySubscriptionNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListBySubscriptionNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// List system topics under a resource group. + /// + /// + /// List all the system topics under a resource group. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + CloudError _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex = new CloudException(_errorBody.Message); + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + ex.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicsOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicsOperationsExtensions.cs new file mode 100644 index 000000000000..e21413511587 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/SystemTopicsOperationsExtensions.cs @@ -0,0 +1,575 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for SystemTopicsOperations. + /// + public static partial class SystemTopicsOperationsExtensions + { + /// + /// Get a system topic. + /// + /// + /// Get properties of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + public static SystemTopic Get(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName) + { + return operations.GetAsync(resourceGroupName, systemTopicName).GetAwaiter().GetResult(); + } + + /// + /// Get a system topic. + /// + /// + /// Get properties of a system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, systemTopicName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create a system topic. + /// + /// + /// Asynchronously creates a new system topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// System Topic information. + /// + public static SystemTopic CreateOrUpdate(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, SystemTopic systemTopicInfo) + { + return operations.CreateOrUpdateAsync(resourceGroupName, systemTopicName, systemTopicInfo).GetAwaiter().GetResult(); + } + + /// + /// Create a system topic. + /// + /// + /// Asynchronously creates a new system topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// System Topic information. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateAsync(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, SystemTopic systemTopicInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, systemTopicInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a system topic. + /// + /// + /// Delete existing system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + public static void Delete(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName) + { + operations.DeleteAsync(resourceGroupName, systemTopicName).GetAwaiter().GetResult(); + } + + /// + /// Delete a system topic. + /// + /// + /// Delete existing system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, systemTopicName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update a system topic. + /// + /// + /// Asynchronously updates a system topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// SystemTopic update information. + /// + public static SystemTopic Update(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, SystemTopicUpdateParameters systemTopicUpdateParameters) + { + return operations.UpdateAsync(resourceGroupName, systemTopicName, systemTopicUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update a system topic. + /// + /// + /// Asynchronously updates a system topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// SystemTopic update information. + /// + /// + /// The cancellation token. + /// + public static async Task UpdateAsync(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, SystemTopicUpdateParameters systemTopicUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, systemTopicUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List system topics under an Azure subscription. + /// + /// + /// List all the system topics under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListBySubscription(this ISystemTopicsOperations operations, string filter = default(string), int? top = default(int?)) + { + return operations.ListBySubscriptionAsync(filter, top).GetAwaiter().GetResult(); + } + + /// + /// List system topics under an Azure subscription. + /// + /// + /// List all the system topics under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionAsync(this ISystemTopicsOperations operations, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionWithHttpMessagesAsync(filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List system topics under a resource group. + /// + /// + /// List all the system topics under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + public static IPage ListByResourceGroup(this ISystemTopicsOperations operations, string resourceGroupName, string filter = default(string), int? top = default(int?)) + { + return operations.ListByResourceGroupAsync(resourceGroupName, filter, top).GetAwaiter().GetResult(); + } + + /// + /// List system topics under a resource group. + /// + /// + /// List all the system topics under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// The query used to filter the search results using OData syntax. Filtering + /// is permitted on the 'name' property only and with limited number of OData + /// operations. These operations are: the 'contains' function as well as the + /// following logical operations: not, and, or, eq (for equal), and ne (for not + /// equal). No arithmetic operations are supported. The following is a valid + /// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'. + /// The following is not a valid filter example: $filter=location eq 'westus'. + /// + /// + /// The number of results to return per page for the list operation. Valid + /// range for top parameter is 1 to 100. If not specified, the default number + /// of results to be returned is 20 items per page. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this ISystemTopicsOperations operations, string resourceGroupName, string filter = default(string), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, filter, top, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create a system topic. + /// + /// + /// Asynchronously creates a new system topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// System Topic information. + /// + public static SystemTopic BeginCreateOrUpdate(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, SystemTopic systemTopicInfo) + { + return operations.BeginCreateOrUpdateAsync(resourceGroupName, systemTopicName, systemTopicInfo).GetAwaiter().GetResult(); + } + + /// + /// Create a system topic. + /// + /// + /// Asynchronously creates a new system topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// System Topic information. + /// + /// + /// The cancellation token. + /// + public static async Task BeginCreateOrUpdateAsync(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, SystemTopic systemTopicInfo, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, systemTopicInfo, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Delete a system topic. + /// + /// + /// Delete existing system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + public static void BeginDelete(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName) + { + operations.BeginDeleteAsync(resourceGroupName, systemTopicName).GetAwaiter().GetResult(); + } + + /// + /// Delete a system topic. + /// + /// + /// Delete existing system topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, systemTopicName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Update a system topic. + /// + /// + /// Asynchronously updates a system topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// SystemTopic update information. + /// + public static SystemTopic BeginUpdate(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, SystemTopicUpdateParameters systemTopicUpdateParameters) + { + return operations.BeginUpdateAsync(resourceGroupName, systemTopicName, systemTopicUpdateParameters).GetAwaiter().GetResult(); + } + + /// + /// Update a system topic. + /// + /// + /// Asynchronously updates a system topic with the specified parameters. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the system topic. + /// + /// + /// SystemTopic update information. + /// + /// + /// The cancellation token. + /// + public static async Task BeginUpdateAsync(this ISystemTopicsOperations operations, string resourceGroupName, string systemTopicName, SystemTopicUpdateParameters systemTopicUpdateParameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginUpdateWithHttpMessagesAsync(resourceGroupName, systemTopicName, systemTopicUpdateParameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List system topics under an Azure subscription. + /// + /// + /// List all the system topics under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListBySubscriptionNext(this ISystemTopicsOperations operations, string nextPageLink) + { + return operations.ListBySubscriptionNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List system topics under an Azure subscription. + /// + /// + /// List all the system topics under an Azure subscription. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListBySubscriptionNextAsync(this ISystemTopicsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListBySubscriptionNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// List system topics under a resource group. + /// + /// + /// List all the system topics under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this ISystemTopicsOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// List system topics under a resource group. + /// + /// + /// List all the system topics under a resource group. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupNextAsync(this ISystemTopicsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/TopicsOperations.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/TopicsOperations.cs index 512713415598..6c5757f820f0 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/TopicsOperations.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/TopicsOperations.cs @@ -964,6 +964,37 @@ internal TopicsOperations(EventGridManagementClient client) /// Key name to regenerate key1 or key2 /// /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string topicName, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginRegenerateKeyWithHttpMessagesAsync(resourceGroupName, topicName, keyName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// List topic event types. + /// + /// + /// List event types for a topic. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Namespace of the provider of the topic. + /// + /// + /// Name of the topic type. + /// + /// + /// Name of the topic. + /// + /// /// Headers that will be added to request. /// /// @@ -984,7 +1015,7 @@ internal TopicsOperations(EventGridManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> RegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string topicName, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListEventTypesWithHttpMessagesAsync(string resourceGroupName, string providerNamespace, string resourceTypeName, string resourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -994,22 +1025,21 @@ internal TopicsOperations(EventGridManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (topicName == null) + if (providerNamespace == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "topicName"); + throw new ValidationException(ValidationRules.CannotBeNull, "providerNamespace"); } - if (Client.ApiVersion == null) + if (resourceTypeName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceTypeName"); } - if (keyName == null) + if (resourceName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "keyName"); + throw new ValidationException(ValidationRules.CannotBeNull, "resourceName"); } - TopicRegenerateKeyRequest regenerateKeyRequest = new TopicRegenerateKeyRequest(); - if (keyName != null) + if (Client.ApiVersion == null) { - regenerateKeyRequest.KeyName = keyName; + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1019,17 +1049,20 @@ internal TopicsOperations(EventGridManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("topicName", topicName); - tracingParameters.Add("regenerateKeyRequest", regenerateKeyRequest); + tracingParameters.Add("providerNamespace", providerNamespace); + tracingParameters.Add("resourceTypeName", resourceTypeName); + tracingParameters.Add("resourceName", resourceName); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "RegenerateKey", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListEventTypes", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}/regenerateKey").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{providerNamespace}/{resourceTypeName}/{resourceName}/providers/Microsoft.EventGrid/eventTypes").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{topicName}", System.Uri.EscapeDataString(topicName)); + _url = _url.Replace("{providerNamespace}", System.Uri.EscapeDataString(providerNamespace)); + _url = _url.Replace("{resourceTypeName}", System.Uri.EscapeDataString(resourceTypeName)); + _url = _url.Replace("{resourceName}", System.Uri.EscapeDataString(resourceName)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -1042,7 +1075,7 @@ internal TopicsOperations(EventGridManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1073,12 +1106,6 @@ internal TopicsOperations(EventGridManagementClient client) // Serialize Request string _requestContent = null; - if(regenerateKeyRequest != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(regenerateKeyRequest, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -1134,7 +1161,7 @@ internal TopicsOperations(EventGridManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1147,7 +1174,7 @@ internal TopicsOperations(EventGridManagementClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1167,23 +1194,20 @@ internal TopicsOperations(EventGridManagementClient client) } /// - /// List topic event types. + /// Create a topic. /// /// - /// List event types for a topic. + /// Asynchronously creates a new topic with the specified parameters. /// /// /// The name of the resource group within the user's subscription. /// - /// - /// Namespace of the provider of the topic. - /// - /// - /// Name of the topic type. - /// - /// + /// /// Name of the topic. /// + /// + /// Topic information. + /// /// /// Headers that will be added to request. /// @@ -1205,7 +1229,7 @@ internal TopicsOperations(EventGridManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListEventTypesWithHttpMessagesAsync(string resourceGroupName, string providerNamespace, string resourceTypeName, string resourceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string topicName, Topic topicInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1215,17 +1239,17 @@ internal TopicsOperations(EventGridManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - if (providerNamespace == null) + if (topicName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "providerNamespace"); + throw new ValidationException(ValidationRules.CannotBeNull, "topicName"); } - if (resourceTypeName == null) + if (topicInfo == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceTypeName"); + throw new ValidationException(ValidationRules.CannotBeNull, "topicInfo"); } - if (resourceName == null) + if (topicInfo != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceName"); + topicInfo.Validate(); } if (Client.ApiVersion == null) { @@ -1239,20 +1263,17 @@ internal TopicsOperations(EventGridManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("providerNamespace", providerNamespace); - tracingParameters.Add("resourceTypeName", resourceTypeName); - tracingParameters.Add("resourceName", resourceName); + tracingParameters.Add("topicName", topicName); + tracingParameters.Add("topicInfo", topicInfo); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListEventTypes", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{providerNamespace}/{resourceTypeName}/{resourceName}/providers/Microsoft.EventGrid/eventTypes").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{providerNamespace}", System.Uri.EscapeDataString(providerNamespace)); - _url = _url.Replace("{resourceTypeName}", System.Uri.EscapeDataString(resourceTypeName)); - _url = _url.Replace("{resourceName}", System.Uri.EscapeDataString(resourceName)); + _url = _url.Replace("{topicName}", System.Uri.EscapeDataString(topicName)); List _queryParameters = new List(); if (Client.ApiVersion != null) { @@ -1265,7 +1286,7 @@ internal TopicsOperations(EventGridManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1296,6 +1317,12 @@ internal TopicsOperations(EventGridManagementClient client) // Serialize Request string _requestContent = null; + if(topicInfo != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(topicInfo, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1316,7 +1343,7 @@ internal TopicsOperations(EventGridManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1351,7 +1378,7 @@ internal TopicsOperations(EventGridManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse>(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1359,12 +1386,12 @@ internal TopicsOperations(EventGridManagementClient client) _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1384,10 +1411,10 @@ internal TopicsOperations(EventGridManagementClient client) } /// - /// Create a topic. + /// Delete a topic. /// /// - /// Asynchronously creates a new topic with the specified parameters. + /// Delete existing topic. /// /// /// The name of the resource group within the user's subscription. @@ -1395,9 +1422,6 @@ internal TopicsOperations(EventGridManagementClient client) /// /// Name of the topic. /// - /// - /// Topic information. - /// /// /// Headers that will be added to request. /// @@ -1407,9 +1431,6 @@ internal TopicsOperations(EventGridManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1419,7 +1440,7 @@ internal TopicsOperations(EventGridManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string topicName, Topic topicInfo, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string topicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1433,14 +1454,6 @@ internal TopicsOperations(EventGridManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "topicName"); } - if (topicInfo == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "topicInfo"); - } - if (topicInfo != null) - { - topicInfo.Validate(); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1454,9 +1467,8 @@ internal TopicsOperations(EventGridManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("topicName", topicName); - tracingParameters.Add("topicInfo", topicInfo); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1476,7 +1488,7 @@ internal TopicsOperations(EventGridManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1507,12 +1519,6 @@ internal TopicsOperations(EventGridManagementClient client) // Serialize Request string _requestContent = null; - if(topicInfo != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(topicInfo, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -1533,7 +1539,7 @@ internal TopicsOperations(EventGridManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 202 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1568,31 +1574,13 @@ internal TopicsOperations(EventGridManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } - // Deserialize Response - if ((int)_statusCode == 201) - { - _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); - try - { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); - } - catch (JsonException ex) - { - _httpRequest.Dispose(); - if (_httpResponse != null) - { - _httpResponse.Dispose(); - } - throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); - } - } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1601,10 +1589,10 @@ internal TopicsOperations(EventGridManagementClient client) } /// - /// Delete a topic. + /// Update a topic. /// /// - /// Delete existing topic. + /// Asynchronously updates a topic with the specified parameters. /// /// /// The name of the resource group within the user's subscription. @@ -1612,6 +1600,9 @@ internal TopicsOperations(EventGridManagementClient client) /// /// Name of the topic. /// + /// + /// Topic update information. + /// /// /// Headers that will be added to request. /// @@ -1621,6 +1612,9 @@ internal TopicsOperations(EventGridManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -1630,7 +1624,7 @@ internal TopicsOperations(EventGridManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string topicName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string topicName, TopicUpdateParameters topicUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1644,6 +1638,10 @@ internal TopicsOperations(EventGridManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "topicName"); } + if (topicUpdateParameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "topicUpdateParameters"); + } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); @@ -1657,8 +1655,9 @@ internal TopicsOperations(EventGridManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("topicName", topicName); + tracingParameters.Add("topicUpdateParameters", topicUpdateParameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; @@ -1678,7 +1677,7 @@ internal TopicsOperations(EventGridManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1709,6 +1708,12 @@ internal TopicsOperations(EventGridManagementClient client) // Serialize Request string _requestContent = null; + if(topicUpdateParameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(topicUpdateParameters, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1729,7 +1734,7 @@ internal TopicsOperations(EventGridManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1764,13 +1769,31 @@ internal TopicsOperations(EventGridManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) { _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } + // Deserialize Response + if ((int)_statusCode == 201) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } if (_shouldTrace) { ServiceClientTracing.Exit(_invocationId, _result); @@ -1779,10 +1802,10 @@ internal TopicsOperations(EventGridManagementClient client) } /// - /// Update a topic. + /// Regenerate key for a topic. /// /// - /// Asynchronously updates a topic with the specified parameters. + /// Regenerate a shared access key for a topic. /// /// /// The name of the resource group within the user's subscription. @@ -1790,8 +1813,8 @@ internal TopicsOperations(EventGridManagementClient client) /// /// Name of the topic. /// - /// - /// Topic update information. + /// + /// Key name to regenerate key1 or key2 /// /// /// Headers that will be added to request. @@ -1814,7 +1837,7 @@ internal TopicsOperations(EventGridManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginUpdateWithHttpMessagesAsync(string resourceGroupName, string topicName, TopicUpdateParameters topicUpdateParameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginRegenerateKeyWithHttpMessagesAsync(string resourceGroupName, string topicName, string keyName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.SubscriptionId == null) { @@ -1828,14 +1851,19 @@ internal TopicsOperations(EventGridManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "topicName"); } - if (topicUpdateParameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "topicUpdateParameters"); - } if (Client.ApiVersion == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); } + if (keyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "keyName"); + } + TopicRegenerateKeyRequest regenerateKeyRequest = new TopicRegenerateKeyRequest(); + if (keyName != null) + { + regenerateKeyRequest.KeyName = keyName; + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1845,13 +1873,13 @@ internal TopicsOperations(EventGridManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("topicName", topicName); - tracingParameters.Add("topicUpdateParameters", topicUpdateParameters); + tracingParameters.Add("regenerateKeyRequest", regenerateKeyRequest); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BeginRegenerateKey", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}/regenerateKey").ToString(); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{topicName}", System.Uri.EscapeDataString(topicName)); @@ -1867,7 +1895,7 @@ internal TopicsOperations(EventGridManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1898,9 +1926,9 @@ internal TopicsOperations(EventGridManagementClient client) // Serialize Request string _requestContent = null; - if(topicUpdateParameters != null) + if(regenerateKeyRequest != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(topicUpdateParameters, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(regenerateKeyRequest, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -1924,7 +1952,7 @@ internal TopicsOperations(EventGridManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200 && (int)_statusCode != 202) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1959,7 +1987,7 @@ internal TopicsOperations(EventGridManagementClient client) throw ex; } // Create Result - var _result = new AzureOperationResponse(); + var _result = new AzureOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; if (_httpResponse.Headers.Contains("x-ms-request-id")) @@ -1967,12 +1995,12 @@ internal TopicsOperations(EventGridManagementClient client) _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); } // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/TopicsOperationsExtensions.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/TopicsOperationsExtensions.cs index 8c3efa05753e..7d983f3a0cb7 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/TopicsOperationsExtensions.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/TopicsOperationsExtensions.cs @@ -649,6 +649,58 @@ public static Topic BeginUpdate(this ITopicsOperations operations, string resour } } + /// + /// Regenerate key for a topic. + /// + /// + /// Regenerate a shared access key for a topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the topic. + /// + /// + /// Key name to regenerate key1 or key2 + /// + public static TopicSharedAccessKeys BeginRegenerateKey(this ITopicsOperations operations, string resourceGroupName, string topicName, string keyName) + { + return operations.BeginRegenerateKeyAsync(resourceGroupName, topicName, keyName).GetAwaiter().GetResult(); + } + + /// + /// Regenerate key for a topic. + /// + /// + /// Regenerate a shared access key for a topic. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The name of the resource group within the user's subscription. + /// + /// + /// Name of the topic. + /// + /// + /// Key name to regenerate key1 or key2 + /// + /// + /// The cancellation token. + /// + public static async Task BeginRegenerateKeyAsync(this ITopicsOperations operations, string resourceGroupName, string topicName, string keyName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginRegenerateKeyWithHttpMessagesAsync(resourceGroupName, topicName, keyName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// List topics under an Azure subscription. /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Microsoft.Azure.Management.EventGrid.csproj b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Microsoft.Azure.Management.EventGrid.csproj index 005379c4a13f..7ec8296ca420 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Microsoft.Azure.Management.EventGrid.csproj +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Microsoft.Azure.Management.EventGrid.csproj @@ -6,14 +6,22 @@ Microsoft.Azure.Management.EventGrid Provides developers with a library to create and manage all Azure EventGrid resources. - 6.0.0 + 6.1.0 Microsoft.Azure.Management.EventGrid Microsoft Azure EventGrid Management;Event Grid;Event Grid management; - This release (version 6.0.0) corresponds to 2020-06-01 API version which includes the following new functionalities: Event delivery schema, Input mapping, Custom input schema event delivery schema, Cloud event V10 schema, Service bus topic as destination, Azure function as destination, Webhook batching, Secure webhook (AAD support), ImmutableId support, IpFiltering, and Private Link. -Please note that release version 5.3.2-preview still corresponds to latest preview API version 2020-04-01-preview and it includes all the GA'ed features in version 6.0.0 as well additional features that are still in preview. These preview features include: Partner topic, Tracked system topic, Sku, and MSI support. - -For a complete list of changes for all various release versions, please refer to: https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/CHANGELOG.md - + + + $(SdkTargetFx) diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Properties/AssemblyInfo.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Properties/AssemblyInfo.cs index f25b216775c4..11be05456960 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Properties/AssemblyInfo.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure EventGrid Management Library")] [assembly: AssemblyDescription("Provides developers with a library to create and manage all Azure EventGrid resources.")] -[assembly: AssemblyVersion("6.0.0.0")] -[assembly: AssemblyFileVersion("6.0.0.0")] +[assembly: AssemblyVersion("6.1.0.0")] +[assembly: AssemblyFileVersion("6.1.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Microsoft.Azure.Management.EventGrid.Tests.csproj b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Microsoft.Azure.Management.EventGrid.Tests.csproj index 978e26e88a9e..616e6b984146 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Microsoft.Azure.Management.EventGrid.Tests.csproj +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Microsoft.Azure.Management.EventGrid.Tests.csproj @@ -7,8 +7,8 @@ Microsoft Corporation Microsoft.Azure.Management.EventGrid.Tests true - True - True + False + False diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/DomainCreateGetUpdateDelete.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/DomainCreateGetUpdateDelete.json index 7779120639ab..0d77135cef2f 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/DomainCreateGetUpdateDelete.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/DomainCreateGetUpdateDelete.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dac36e12-fbd5-4c08-acd7-ab091fa6cb5d" + "35cdae0b-b1c1-459f-813d-4f89f925a27d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:16 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "0f0ddf26-679d-45e1-9833-d9ff3862bce8" + "b0e8ebd8-b526-4dc8-bc39-5184aa15fbf9" ], "x-ms-correlation-request-id": [ - "0f0ddf26-679d-45e1-9833-d9ff3862bce8" + "b0e8ebd8-b526-4dc8-bc39-5184aa15fbf9" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015216Z:0f0ddf26-679d-45e1-9833-d9ff3862bce8" + "CENTRALUSEUAP:20210219T005027Z:b0e8ebd8-b526-4dc8-bc39-5184aa15fbf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "40984" + "Date": [ + "Fri, 19 Feb 2021 00:50:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "43627" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7708\",\r\n \"name\": \"sdk-EventGrid-RG-7708\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1685\",\r\n \"name\": \"sdk-EventGrid-RG-1685\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4800\",\r\n \"name\": \"sdk-EventGrid-RG-4800\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1724\",\r\n \"name\": \"RGName-ps1724\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242\",\r\n \"name\": \"RGName-ps1242\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2627\",\r\n \"name\": \"RGName-ps2627\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2205\",\r\n \"name\": \"RGName-ps2205\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3309\",\r\n \"name\": \"RGName-ps3309\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5822\",\r\n \"name\": \"RGName-ps5822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9506\",\r\n \"name\": \"RGName-ps9506\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2751\",\r\n \"name\": \"sdk-EventGrid-RG-2751\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1\",\r\n \"name\": \"testRg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg\",\r\n \"name\": \"mparkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkrg\",\r\n \"name\": \"vkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"name\": \"MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi\",\r\n \"name\": \"msi\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain\",\r\n \"name\": \"msidomain\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishptestvm_group\",\r\n \"name\": \"kishptestvm_group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829\",\r\n \"name\": \"sdk-EventGrid-RG-1829\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537\",\r\n \"name\": \"sdk-EventGrid-RG-2537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RgWithPolicyZRestrictions\",\r\n \"name\": \"RgWithPolicyZRestrictions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/crptestps1147\",\r\n \"name\": \"crptestps1147\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2\",\r\n \"name\": \"PartnerRg2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1\",\r\n \"name\": \"PartnerRg1\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"name\": \"clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:51:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"name\": \"clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:56:49Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"name\": \"clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T10:02:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"name\": \"clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T20:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7867\",\r\n \"name\": \"RGName-ps7867\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1794\",\r\n \"name\": \"RGName-ps1794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4072\",\r\n \"name\": \"RGName-ps4072\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-4326?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-1822?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c3bab570-74f2-49b0-90a5-836318c2be25" + "dd7de85a-d1e6-4518-88c2-6a1d45a8aa9e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:16 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "e2f83be2-a774-48e2-bb61-afd875412aba" + "bca1b263-37ee-4e70-9f80-70b1b36ca1b9" ], "x-ms-correlation-request-id": [ - "e2f83be2-a774-48e2-bb61-afd875412aba" + "bca1b263-37ee-4e70-9f80-70b1b36ca1b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015216Z:e2f83be2-a774-48e2-bb61-afd875412aba" + "CENTRALUSEUAP:20210219T005027Z:bca1b263-37ee-4e70-9f80-70b1b36ca1b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:27 GMT" + ], "Content-Length": [ "202" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326\",\r\n \"name\": \"sdk-EventGrid-RG-4326\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822\",\r\n \"name\": \"sdk-EventGrid-RG-1822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "24e32885-a270-4b91-80b6-b02e278c4db2" + "026d3252-9d10-42e8-8cce-abc0f98de871" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:19 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/37ABB2B8-9D86-44B1-81F4-7AB86F396E54?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B8ECA234-6AEA-494C-ACD5-C6A56B2AD84A?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "4a4ac3d0-5c9e-4810-98eb-8b2dde563de9" + "52e3ca10-8be2-40db-b3ef-ae18845ef8e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "622a0262-2d37-4356-88a4-72649ed18a56" + "49951f13-a1e9-4c42-a3a1-e6084cea4b06" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015219Z:622a0262-2d37-4356-88a4-72649ed18a56" + "CENTRALUSEUAP:20210219T005028Z:49951f13-a1e9-4c42-a3a1-e6084cea4b06" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:28 GMT" + ], "Content-Length": [ - "597" + "599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,26 +198,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "010fabaf-4317-4a1e-959c-1e019db5c7f3" + "05bcc21f-8702-413b-9b23-4b1e72b8bb7d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -230,41 +230,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:38 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/612C017C-C107-450B-AC5A-A0B76D230376?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/76480BEC-6504-49F6-8C72-0FF5F632003C?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "7b981789-e9a3-4c72-aac1-b81f21dded7b" + "c2b447ce-6c6f-487a-a4ce-eb6fdd9a4f6b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "e0743f4b-9016-4cd2-bdcd-7332e5988918" + "5d6d8ba9-5a2c-4958-869c-176de07dc3b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015238Z:e0743f4b-9016-4cd2-bdcd-7332e5988918" + "CENTRALUSEUAP:20210219T005048Z:5d6d8ba9-5a2c-4958-869c-176de07dc3b1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:47 GMT" + ], "Content-Length": [ - "597" + "599" ], "Content-Type": [ "application/json; charset=utf-8" @@ -273,26 +273,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3abae166-b7a1-44c5-a33e-59fc3a7b3355" + "c03cf8e0-b273-490a-bcac-ddc053038a65" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -305,41 +305,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:59 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/84895A1E-07C5-4E18-82CB-D607C172CD15?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/89316C4C-0F2B-4CD2-B65D-797F8AC99CC3?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "69dfcbb9-ac6c-4b57-a49d-f65798954d78" + "16321eba-e04f-4bb8-8f14-09c3cd2ec1ae" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "6e665883-7dc8-45b0-9d17-e5af9e878f97" + "a5897015-5f39-445b-a2cd-58827b79a4d7" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015300Z:6e665883-7dc8-45b0-9d17-e5af9e878f97" + "CENTRALUSEUAP:20210219T005110Z:a5897015-5f39-445b-a2cd-58827b79a4d7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:09 GMT" + ], "Content-Length": [ - "734" + "736" ], "Content-Type": [ "application/json; charset=utf-8" @@ -348,55 +348,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/37ABB2B8-9D86-44B1-81F4-7AB86F396E54?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMzdBQkIyQjgtOUQ4Ni00NEIxLTgxRjQtN0FCODZGMzk2RTU0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B8ECA234-6AEA-494C-ACD5-C6A56B2AD84A?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQjhFQ0EyMzQtNkFFQS00OTRDLUFDRDUtQzZBNTZCMkFEODRBP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f0a62f06-9ccf-4bed-9856-832e4eee5ffc" + "42994c06-1519-4fc0-b7b0-9e7e6dcf89f1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "6a4d7c3b-a5d4-4c17-8777-a9413852a1c8" + "cdb04751-e6c6-43a8-ab72-239e89d95875" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015229Z:6a4d7c3b-a5d4-4c17-8777-a9413852a1c8" + "CENTRALUSEUAP:20210219T005039Z:cdb04751-e6c6-43a8-ab72-239e89d95875" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:38 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -405,55 +405,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/37ABB2B8-9D86-44B1-81F4-7AB86F396E54?api-version=2020-06-01\",\r\n \"name\": \"37abb2b8-9d86-44b1-81f4-7ab86f396e54\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B8ECA234-6AEA-494C-ACD5-C6A56B2AD84A?api-version=2020-10-15-preview\",\r\n \"name\": \"b8eca234-6aea-494c-acd5-c6a56b2ad84a\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6a3229d-bd73-4c43-bb50-636278613297" + "52b0790f-a786-4256-878f-5fa59ff9c691" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "2ac67d3c-4ce9-4c75-97c0-c474dbed872a" + "4fc117c1-d84b-4c2d-9469-a8a905d740b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015229Z:2ac67d3c-4ce9-4c75-97c0-c474dbed872a" + "CENTRALUSEUAP:20210219T005039Z:4fc117c1-d84b-4c2d-9469-a8a905d740b2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:38 GMT" + ], "Content-Length": [ - "755" + "781" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,61 +462,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83bd03f5-624a-4b30-8343-0045aa182162" + "f9b1255d-55c8-4d04-9080-ce4bb9fb719f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6c68a636-4d3e-4ba6-8c44-ee87d13af36f" + "e41ed5b6-d3af-4754-af5f-469a195aef8f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "e6159a35-23e5-49f2-a716-a278a0ba742a" + "95f66966-f268-4293-9be5-c620d958300e" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015235Z:e6159a35-23e5-49f2-a716-a278a0ba742a" + "CENTRALUSEUAP:20210219T005044Z:95f66966-f268-4293-9be5-c620d958300e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:44 GMT" + ], "Content-Length": [ - "755" + "781" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,61 +525,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3ede1f9-ba21-4fb2-a5d4-330ae3bbef83" + "f18a0e36-ac66-47a8-a963-2e6db7926839" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "66c71306-33ea-45ff-9a0d-954cd9e93198" + "58c54d45-1b96-44ba-8600-c868c92ca39b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-correlation-request-id": [ - "51115e16-2177-4fde-b36b-32cbb70e1b93" + "e258c38f-84c9-44dd-bdbc-aeac343708ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015235Z:51115e16-2177-4fde-b36b-32cbb70e1b93" + "CENTRALUSEUAP:20210219T005044Z:e258c38f-84c9-44dd-bdbc-aeac343708ff" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:44 GMT" + ], "Content-Length": [ - "755" + "781" ], "Content-Type": [ "application/json; charset=utf-8" @@ -588,55 +588,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18d922ba-cb16-4473-9f26-e78a01d890bd" + "0121468b-4a46-4561-aced-67cc7dde13d1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11989" ], "x-ms-correlation-request-id": [ - "78edd382-3705-43a2-ad9e-7692cc601b99" + "e5486566-c95f-45bc-bf5c-0fb5fbee4aca" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015248Z:78edd382-3705-43a2-ad9e-7692cc601b99" + "CENTRALUSEUAP:20210219T005058Z:e5486566-c95f-45bc-bf5c-0fb5fbee4aca" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:58 GMT" + ], "Content-Length": [ - "755" + "781" ], "Content-Type": [ "application/json; charset=utf-8" @@ -645,55 +645,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "22de274b-3a7e-4599-872e-9f7dfdc84472" + "9241a901-f7d3-4553-88d4-31db9bc60735" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11987" ], "x-ms-correlation-request-id": [ - "aa0f02d8-55c4-40dc-97d2-828c430355a0" + "c3c2fca2-0ae2-40f3-9f4c-51a56226901c" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015300Z:aa0f02d8-55c4-40dc-97d2-828c430355a0" + "CENTRALUSEUAP:20210219T005109Z:c3c2fca2-0ae2-40f3-9f4c-51a56226901c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:09 GMT" + ], "Content-Length": [ - "751" + "777" ], "Content-Type": [ "application/json; charset=utf-8" @@ -702,55 +702,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a19f8e4e-3787-4681-8fc2-bb9823a4f3ae" + "7dc51c1d-edf1-49a0-8568-c557fcd88c42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11985" ], "x-ms-correlation-request-id": [ - "48177de8-4ff7-46bc-91d6-063453ae7e3f" + "13f88c1e-a771-40f9-aa4a-0521bd1db291" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015310Z:48177de8-4ff7-46bc-91d6-063453ae7e3f" + "CENTRALUSEUAP:20210219T005120Z:13f88c1e-a771-40f9-aa4a-0521bd1db291" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:20 GMT" + ], "Content-Length": [ - "860" + "886" ], "Content-Type": [ "application/json; charset=utf-8" @@ -759,61 +759,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a99acf5d-b343-498e-840c-a6fb8148a3f2" + "c590acea-b91c-4f68-8b4b-2facfd618c89" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ef6de69-41a6-4c70-9eb4-974aac084bab" + "ba6174af-1421-4485-89a6-b0785aa8d549" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-correlation-request-id": [ - "2972adc4-7eb1-4d90-8c7f-7fd9da97f371" + "8d28d737-d387-4cfa-9021-c7a96e57e2e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015235Z:2972adc4-7eb1-4d90-8c7f-7fd9da97f371" + "CENTRALUSEUAP:20210219T005044Z:8d28d737-d387-4cfa-9021-c7a96e57e2e2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:44 GMT" + ], "Content-Length": [ - "767" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -822,61 +822,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains?api-version=2020-06-01&$top=5", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDEmJHRvcD01", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains?api-version=2020-10-15-preview&$top=5", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldyYkdG9wPTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2de32bb3-30d1-4fee-8680-e0d60c251eea" + "ac49a136-3c7f-4559-bbea-432aef23d689" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6460e1a4-4f21-47c3-a2a0-07556d3a0ee3" + "07ed5ffa-25da-4605-bf46-bb740562a34f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-correlation-request-id": [ - "677ce3d0-fcd2-4627-b4b8-679b2b90092b" + "c88e296e-2455-4e97-9b6d-8ff23c1997b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015235Z:677ce3d0-fcd2-4627-b4b8-679b2b90092b" + "CENTRALUSEUAP:20210219T005045Z:c88e296e-2455-4e97-9b6d-8ff23c1997b4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:44 GMT" + ], "Content-Length": [ - "767" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,93 +885,89 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2020-06-01&$top=100", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMSYkdG9wPTEwMA==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/domains?api-version=2020-10-15-preview&$top=100", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3JiR0b3A9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7077561-9930-4d31-8d0d-de56f015d1c7" + "8ca23f3e-5aa2-45d4-b16e-daf32b45820d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:37 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "12319ab4-bd2d-409f-8a41-1c38ba39eb76", - "94514960-c725-431c-a67b-aea630366e38", - "7abc4f17-6f41-4585-a10d-8c8689bc22c6", - "cb53ac75-9f03-4efb-bc68-69ed91e73959", - "5816bfc3-b072-4d1b-b569-5cfe8186a4db", - "e6e4cd97-0f51-4e5c-b45f-7533eaddb2e3", - "de42e1ce-bc26-4054-b7c3-a843e23e90f3", - "5f2d6ecc-226b-4f71-9b2c-fa6c2628149c", - "5d9ea413-026d-4e82-8f22-43b4fb926d20", - "6f5c294f-c02b-45ba-a3ba-306a610f56f2", - "0eaf6980-9991-4c51-81b3-3bf712bdcbf0", - "dc83be82-a951-4f95-875c-ee7ee3b1b13e", - "1bef18ad-b4ea-4863-a5d5-01ebd2f729ca", - "fbb7723b-69d5-451f-a3b2-34de52ff65d2", - "4dcc6029-4461-442b-94d5-ab31f435effc", - "5e72e82b-3ba1-487c-be1a-3318eb85f0b9", - "9f776a84-e5a1-459f-8481-57d134c1f44e", - "58913c95-1b7d-4a6c-96ca-341a0816e395", - "8fec2fca-aad5-4167-8f39-726bbe81a29e", - "e80f98a8-09f7-4df3-9cba-832bf97d1eec", - "f7db07ea-1d88-4c66-a51e-59e7946b6915", - "065fbb19-a894-43b6-b769-597d17104c03", - "29baeb6b-57a0-411d-a186-259ff3bffc8a", - "e257720d-5166-43b9-b088-c06d87a95316", - "4c069e0a-0d70-4009-9aaa-2136fbac5c74", - "c2cb48d7-3460-49e9-9ef8-bb02aca67c6e", - "d36401c7-91e5-4706-a1fd-2a62546dfcfd", - "02b58154-0be4-4b46-9202-daa1eb64b81c", - "bca2b917-12c2-4cea-9d0e-24184d82bb91", - "ea935a90-3294-48e5-b7ae-b36c81bf4377", - "ff9edd9c-c5a9-4402-b7cf-cc6285f5285a", - "15d6f086-f41a-43f0-a86d-aec6bf98efd1", - "98638c3f-1319-4ecc-abc6-b810f4f80659", - "acff4903-abaa-46a3-b5f2-ac7cff4a9ab8", - "f3eec93a-251c-48b3-85fc-e86ce9c0e5c9", - "bdb763d8-4a17-4241-9f8b-7824e6b28a13", - "b811cc62-135a-4ce1-b903-47f78e3af9f1", - "f0e3c069-005b-46e9-856b-682592edb836", - "1ecc4bb4-2a69-4a7c-853a-de8b225d3c5c", - "50f3cb65-dfb0-4524-990b-d8b1dcef8f13", - "fc0c0bfd-e654-4ad1-bdf5-4fb6527a2acf", - "a98ff645-1c95-4f59-b600-7a13816c2be1" + "320b5b51-8fe6-4ebc-8355-e1207973ad69", + "daa92cb9-1f66-4957-9c8a-b6e3628041f6", + "06cc1749-2051-4855-92ec-672dc0586563", + "c12bf107-4908-48e0-9df6-7e643d9078da", + "b24043a9-bac7-4a04-aef2-dd773531f57f", + "76ca3b44-58bc-47df-83ea-c3b60c1ddd4e", + "521b3306-1dd3-4f4d-8190-b906d6428436", + "b8f2ece1-c4f0-4308-bb63-c9e7c45c965d", + "e2ba79a8-bb5a-4f65-874d-9f9aad31323c", + "4de91438-5456-4344-96fb-8d563fa3f46f", + "b1c9a291-2e7f-4cc9-8318-62d4dbead416", + "d42269c5-c2cb-4578-a032-ca69944baaed", + "4157329c-6be6-4d38-965a-5e6e46992ab9", + "9e016e15-3110-429e-a4d5-6752177d6515", + "7016757e-51d6-4aa8-891c-f76f102beb82", + "2ce2ce87-27b0-4315-92de-7f39734ef8f5", + "4ec9014b-bf9f-48a2-a8e2-eef9802cf84c", + "57908ae2-b62d-47f4-937e-43e9d34b60d0", + "86aa44d5-d104-4a9b-8520-a8586261586d", + "be0db15f-a4b7-453b-9bbc-4ba5c9918b48", + "b193f1ae-fbae-4be4-bf1d-3c284d0e0256", + "18c7584d-2f28-46c9-82b8-fe43b68f34fa", + "e3c1ffb9-9884-4fa1-b728-b10bc6c4b21f", + "02067864-838b-43c5-a179-cd82cf7c3a26", + "477f9cdf-18d2-4fb5-9d26-d7362a03e407", + "745fcb55-cb9e-4ff7-9683-a038baaf1bbf", + "1224c662-9b3d-4e26-b24b-d2fc2cac301c", + "9a549341-3919-44f2-9232-6b839dfd645a", + "ef5e0105-bad8-4c41-baf7-1f98a59daf6e", + "3483ebab-ba62-4efa-b244-784e17a1edbd", + "b1408651-63ee-4f7e-8b82-90a792c713e8", + "667d9199-497c-47be-b0f3-5c1cfe8902e2", + "c9678275-6ec1-4afa-8372-d8ef10f249c8", + "b62f5f14-45c7-4d61-a631-8f9bbda82c5e", + "6b7f38c6-8e38-4788-b10f-62dec13cc7fe", + "037c4004-bb39-4ee3-9a6d-bc76b9bfe11f", + "4ef56ccc-3432-4a02-8817-4e419c6e7c25", + "4f0ec270-431a-484d-a5c4-b4c1c4734a55", + "9332dc1b-ce01-4ffa-ba1d-9c9ca87ba7ef", + "eeb6109d-639e-4f39-8685-6a45b350e53f", + "9cc4fbf3-887e-4872-a1d4-ef03eebc0d90" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11991" ], "x-ms-request-id": [ - "ef2f657c-9dd9-4c8e-988a-9c99e6163fbd" + "025bc179-5a07-45f7-9654-2b75ba3ea4b5" ], "x-ms-correlation-request-id": [ - "ef2f657c-9dd9-4c8e-988a-9c99e6163fbd" + "025bc179-5a07-45f7-9654-2b75ba3ea4b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015237Z:ef2f657c-9dd9-4c8e-988a-9c99e6163fbd" + "CENTRALUSEUAP:20210219T005047Z:025bc179-5a07-45f7-9654-2b75ba3ea4b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -979,65 +975,68 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "148082" + "Date": [ + "Fri, 19 Feb 2021 00:50:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "85737" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-usce-01.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-usce-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-usce-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-usce-002.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-usce-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-usce-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-centralus.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-centralus\",\r\n \"name\": \"eg-domains-latency-runner-domain-centralus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-usce-004.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-usce-004\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-usce-004\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-usce-003.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-usce-003\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-usce-003\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-usce-001.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-usce-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-usce-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-001.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-003.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-003\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-003\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-004.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-004\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-004\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-002.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-1c.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-1a.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-1b.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-201.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-201\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-201\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-251.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-401.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-252.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-402.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain0afb2d5ecentralus.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain0afb2d5eCentralUS\",\r\n \"name\": \"egcrudrunnerdomain0afb2d5eCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw202.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw202\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw202\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw2-001.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw2-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw2-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw2-002.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw2-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw2-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw2-03.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw2-03\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw2-03\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw2-04.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw2-04\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw2-04\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westus2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westus2\",\r\n \"name\": \"eg-domains-latency-runner-domain-westus2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw2-01.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw2-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw2-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw2-02.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw2-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw2-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw2-1c.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw2-1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw2-1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw2-1a.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw2-1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw2-1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusw2-1b.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusw2-1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusw2-1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-401.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-253.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-253\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-253\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-252.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-251.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-402.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain737c8d31westus2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain737c8d31WestUS2\",\r\n \"name\": \"egcrudrunnerdomain737c8d31WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusea-001.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusea-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusea-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusea-002.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusea-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusea-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eastus.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eastus\",\r\n \"name\": \"eg-domains-latency-runner-domain-eastus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusea-003.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusea-003\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusea-003\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusea-004.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusea-004\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusea-004\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusea-1b.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusea-1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusea-1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusea-1a.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusea-1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusea-1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusea-1c.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusea-1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusea-1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://diagnosticlogdomains.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/domains/diagnosticlogdomains\",\r\n \"name\": \"diagnosticlogdomains\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusea-201.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusea-201\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusea-201\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusea-202.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusea-202\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusea-202\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usea-401.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usea-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usea-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usea-402.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usea-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usea-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usea-251.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usea-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usea-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usea-252.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usea-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usea-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainpermission.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainPermission\",\r\n \"name\": \"testDomainPermission\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainc6ea1f91eastus.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainc6ea1f91EastUS\",\r\n \"name\": \"egcrudrunnerdomainc6ea1f91EastUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduswe-001.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduswe-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduswe-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduswe-002.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduswe-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduswe-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduswe-03.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduswe-03\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduswe-03\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westus.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westus\",\r\n \"name\": \"eg-domains-latency-runner-domain-westus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduswe-01.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduswe-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduswe-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduswe-02.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduswe-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduswe-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduswe-201.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduswe-201\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduswe-201\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduse2-001.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduse2-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduse2-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduse2-002.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduse2-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduse2-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eastus2.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eastus2\",\r\n \"name\": \"eg-domains-latency-runner-domain-eastus2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduse2-03.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduse2-03\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduse2-03\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduse2-04.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduse2-04\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduse2-04\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduse2-1c.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduse2-1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduse2-1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduse2-1a.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduse2-1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduse2-1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduse2-1b.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduse2-1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduse2-1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-use2-252.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-use2-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-use2-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-use2-401.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-use2-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-use2-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-use2-251.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-use2-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-use2-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-use2-402.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-use2-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-use2-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaine900f0e8eastus2.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaine900f0e8EastUS2\",\r\n \"name\": \"egcrudrunnerdomaine900f0e8EastUS2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-uswc-003.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-uswc-003\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-uswc-003\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-uswc-002.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-uswc-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-uswc-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-uswc-01.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-uswc-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-uswc-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westcentralus.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westcentralus\",\r\n \"name\": \"eg-domains-latency-runner-domain-westcentralus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-uswc-003.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-uswc-003\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-uswc-003\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-uswc-01.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-uswc-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-uswc-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-uswc-002.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-uswc-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-uswc-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-uswc-02.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-uswc-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-uswc-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"name\": \"clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"name\": \"clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg\",\r\n \"name\": \"clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-uswc-03.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-uswc-03\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-uswc-03\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-uswc-201.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-uswc-201\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-uswc-201\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain1a660dadwestcentralus.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain1a660dadWestCentralUS\",\r\n \"name\": \"egcrudrunnerdomain1a660dadWestCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodauea-01.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodauea-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodauea-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodauea-02.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodauea-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodauea-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-australiaeast.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-australiaeast\",\r\n \"name\": \"eg-domains-latency-runner-australiaeast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainee308dc6australiaeast.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainee308dc6AustraliaEast\",\r\n \"name\": \"egcrudrunnerdomainee308dc6AustraliaEast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-ause-01.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-ause-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-ause-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-astrlsthest.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-AstrlSthest\",\r\n \"name\": \"eg-domains-latency-runner-domain-AstrlSthest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodause01.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodause01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodause01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodause02.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodause02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodause02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain481fb6daaustraliasoutheast.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain481fb6daAustraliaSoutheast\",\r\n \"name\": \"egcrudrunnerdomain481fb6daAustraliaSoutheast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-auce-01.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-auce-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-auce-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-auce-02.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-auce-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-auce-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-australiacentral.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-australiacentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-australiacentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain10587c5baustraliacentral.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain10587c5bAustraliaCentral\",\r\n \"name\": \"egcrudrunnerdomain10587c5bAustraliaCentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-japaneast.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-japaneast\",\r\n \"name\": \"eg-domains-latency-runner-domain-japaneast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodjpea-1a.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodjpea-1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodjpea-1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodjpea-1c.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodjpea-1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodjpea-1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodjpea-1b.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodjpea-1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodjpea-1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain941ed2ebjapaneast.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain941ed2ebJapanEast\",\r\n \"name\": \"egcrudrunnerdomain941ed2ebJapanEast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-japanwest.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-japanwest\",\r\n \"name\": \"eg-domains-latency-runner-domain-japanwest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodjpwe01.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodjpwe01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodjpwe01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodjpwe02.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodjpwe02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodjpwe02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainab489127japanwest.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainab489127JapanWest\",\r\n \"name\": \"egcrudrunnerdomainab489127JapanWest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuwe001.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuwe001\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuwe001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuwe002.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuwe002\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuwe002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westeurope.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westeurope\",\r\n \"name\": \"eg-domains-latency-runner-domain-westeurope\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuwe1a.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuwe1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuwe1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuwe1b.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuwe1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuwe1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuwe1c.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuwe1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuwe1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-northeurope.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-northeurope\",\r\n \"name\": \"eg-domains-latency-runner-domain-northeurope\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuno-001.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuno-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuno-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuno-002.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuno-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuno-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuno-1a.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuno-1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuno-1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuno-1b.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuno-1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuno-1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodeuno-1c.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodeuno-1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodeuno-1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodapac-001.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodapac-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodapac-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodapac-002.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodapac-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodapac-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southeastasia.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southeastasia\",\r\n \"name\": \"eg-domains-latency-runner-domain-southeastasia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodapac-1c.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodapac-1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodapac-1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodapac-1a.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodapac-1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodapac-1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodapac-1b.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodapac-1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodapac-1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain43af0eb1southeastasia.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain43af0eb1SoutheastAsia\",\r\n \"name\": \"egcrudrunnerdomain43af0eb1SoutheastAsia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-asea-001.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-asea-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-asea-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-asea-002.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-asea-002\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-asea-002\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eastasia.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eastasia\",\r\n \"name\": \"eg-domains-latency-runner-domain-eastasia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-asea-02.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-asea-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-asea-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-asea-01.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-asea-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-asea-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain2be55e23eastasia.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain2be55e23EastAsia\",\r\n \"name\": \"egcrudrunnerdomain2be55e23EastAsia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusnc-01.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusnc-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusnc-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodusnc-02.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodusnc-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodusnc-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-northcentralus.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-northcentralus\",\r\n \"name\": \"eg-domains-latency-runner-domain-northcentralus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain90df9f30northcentralus.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain90df9f30NorthCentralUS\",\r\n \"name\": \"egcrudrunnerdomain90df9f30NorthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodussc01.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodussc01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodussc01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodussc02.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodussc02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodussc02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southcentralus.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southcentralus\",\r\n \"name\": \"eg-domains-latency-runner-domain-southcentralus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-ussc-401.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-ussc-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-ussc-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-ussc-251.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-ussc-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-ussc-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-ussc-402.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-ussc-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-ussc-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-ussc-252.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-ussc-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-ussc-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainf7f4f42bsouthcentralus.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainf7f4f42bSouthCentralUS\",\r\n \"name\": \"egcrudrunnerdomainf7f4f42bSouthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodbrso-01.brazilsouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodbrso-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodbrso-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodbrso-02.brazilsouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodbrso-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodbrso-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-brazilsouth.brazilsouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-brazilsouth\",\r\n \"name\": \"eg-domains-latency-runner-domain-brazilsouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain2690df46brazilsouth.brazilsouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain2690df46BrazilSouth\",\r\n \"name\": \"egcrudrunnerdomain2690df46BrazilSouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodcace01.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodcace01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodcace01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodcace02.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodcace02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodcace02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-canadacentral.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-canadacentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-canadacentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainf1891f5acanadacentral.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainf1891f5aCanadaCentral\",\r\n \"name\": \"egcrudrunnerdomainf1891f5aCanadaCentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-canadaeast.canadaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-canadaeast\",\r\n \"name\": \"eg-domains-latency-runner-domain-canadaeast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodcaea-02.canadaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodcaea-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodcaea-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodcaea-01.canadaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodcaea-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodcaea-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainaf2eaef7canadaeast.canadaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainaf2eaef7CanadaEast\",\r\n \"name\": \"egcrudrunnerdomainaf2eaef7CanadaEast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodince01.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodince01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodince01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodince02.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodince02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodince02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-centralindia.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-centralindia\",\r\n \"name\": \"eg-domains-latency-runner-domain-centralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaincentralindia.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/domains/testdomaincentralindia\",\r\n \"name\": \"testdomaincentralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain49e7785bcentralindia.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain49e7785bCentralIndia\",\r\n \"name\": \"egcrudrunnerdomain49e7785bCentralIndia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodinso-02.southindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodinso-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodinso-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodinso-01.southindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodinso-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodinso-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southindia.southindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southindia\",\r\n \"name\": \"eg-domains-latency-runner-domain-southindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westindia.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westindia\",\r\n \"name\": \"eg-domains-latency-runner-domain-westindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodinwe01.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodinwe01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodinwe01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodinwe02.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodinwe02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodinwe02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain0dc1c90bwestindia.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain0dc1c90bWestIndia\",\r\n \"name\": \"egcrudrunnerdomain0dc1c90bWestIndia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-francecentral.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-francecentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-francecentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodfrce1b.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodfrce1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodfrce1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodfrce1c.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodfrce1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodfrce1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodfrce1a.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodfrce1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodfrce1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaina008ebb4francecentral.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaina008ebb4FranceCentral\",\r\n \"name\": \"egcrudrunnerdomaina008ebb4FranceCentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodukwe01.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodukwe01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodukwe01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodukwe02.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodukwe02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodukwe02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-ukwest.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-ukwest\",\r\n \"name\": \"eg-domains-latency-runner-domain-ukwest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain6d7e22b6ukwest.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain6d7e22b6UKWest\",\r\n \"name\": \"egcrudrunnerdomain6d7e22b6UKWest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodukso-04.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodukso-04\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodukso-04\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-uksouth.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-uksouth\",\r\n \"name\": \"eg-domains-latency-runner-domain-uksouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodukso-01.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodukso-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodukso-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodukso-1a.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodukso-1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodukso-1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodukso-1c.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodukso-1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodukso-1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodukso-1b.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodukso-1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodukso-1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain1a25541fuksouth.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain1a25541fUKSouth\",\r\n \"name\": \"egcrudrunnerdomain1a25541fUKSouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodkrce01.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodkrce01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodkrce01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodkrce02.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodkrce02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodkrce02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-koreacentral.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-koreacentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-koreacentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain056c7addkoreacentral.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain056c7addKoreaCentral\",\r\n \"name\": \"egcrudrunnerdomain056c7addKoreaCentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodkrso-02.koreasouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodkrso-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodkrso-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodkrso-01.koreasouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodkrso-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodkrso-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-koreasouth.koreasouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-koreasouth\",\r\n \"name\": \"eg-domains-latency-runner-domain-koreasouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain5c7d054bkoreasouth.koreasouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain5c7d054bKoreaSouth\",\r\n \"name\": \"egcrudrunnerdomain5c7d054bKoreaSouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodsafn-02.southafricanorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodsafn-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodsafn-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southafricanorth.southafricanorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southafricanorth\",\r\n \"name\": \"eg-domains-latency-runner-domain-southafricanorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodsafn-01.southafricanorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodsafn-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodsafn-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain38bdcc84southafricanorth.southafricanorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain38bdcc84SouthAfricaNorth\",\r\n \"name\": \"egcrudrunnerdomain38bdcc84SouthAfricaNorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainf4522e57southafricanorth.southafricanorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainf4522e57SouthAfricaNorth\",\r\n \"name\": \"egcrudrunnerdomainf4522e57SouthAfricaNorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-uaenorth.uaenorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-uaenorth\",\r\n \"name\": \"eg-domains-latency-runner-domain-uaenorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduaen-02.uaenorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduaen-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduaen-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduaen-01.uaenorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduaen-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduaen-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainb5cea3c9uaenorth.uaenorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainb5cea3c9UAENorth\",\r\n \"name\": \"egcrudrunnerdomainb5cea3c9UAENorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-switzerlandnorth.switzerlandnorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-switzerlandnorth\",\r\n \"name\": \"eg-domains-latency-runner-domain-switzerlandnorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodswno-01.switzerlandnorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodswno-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodswno-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodswno-02.switzerlandnorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodswno-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodswno-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain0e398e03switzerlandnorth.switzerlandnorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain0e398e03SwitzerlandNorth\",\r\n \"name\": \"egcrudrunnerdomain0e398e03SwitzerlandNorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-ltncy-runner-domain-gewestcentral.germanywestcentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany West Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral/providers/Microsoft.EventGrid/domains/eg-domains-ltncy-runner-domain-gewestcentral\",\r\n \"name\": \"eg-domains-ltncy-runner-domain-gewestcentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodgewc-01.germanywestcentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany West Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodgewc-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodgewc-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodgewc-02.germanywestcentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany West Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodgewc-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodgewc-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain3d9f9958norwayeast.norwayeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway East\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain3d9f9958NorwayEast\",\r\n \"name\": \"egcrudrunnerdomain3d9f9958NorwayEast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-east-us-2-euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c34d7dfb-7665-4850-9090-bd1b7859f359\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-east-us-2-euap\",\r\n \"name\": \"eg-domains-latency-runner-domain-east-us-2-euap\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-001.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"db6c1a94-a596-4ec9-83b8-fa6971365565\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-001\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-001\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egdmansltncyrunnerdomainlocaltesteastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6db03474-af0e-499a-8fb5-68e33a589f77\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/egdmansltncyrunnerdomainlocaltesteastus2euap\",\r\n \"name\": \"egdmansltncyrunnerdomainlocaltesteastus2euap\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-02.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"212a50f7-332b-44ee-8a5e-97e804364237\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-03.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e9c1e0c6-baa2-4212-88fb-89f457b76267\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-03\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-03\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-000.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ba9e9744-5291-4fec-b1b6-7408b36ae453\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-000\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-000\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-1c.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8467db63-0bd8-40ab-8b35-d3b7fbcebed0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-1c\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-1c\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-1b.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7e486df4-7a41-4542-b9c9-c71bac7381e8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-1b\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-1b\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-1a.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1489ba1e-d76a-4ba2-a472-6c4dfa6ce861\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-1a\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-1a\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-201.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"261de9bf-e702-45ab-8d6d-59f080c7bc4c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-201\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-201\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-202.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9f8fc102-0693-4666-9970-38ff81448718\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-202\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-202\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-use2-301.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6a1810c4-00da-4779-b5bb-990b651827c9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-use2-301\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-use2-301\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup5.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b589ef01-2ca8-41c9-aa80-4bb99a938ea2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup5\",\r\n \"name\": \"testDomainDup5\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaine8b70966eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"893afb8c-682e-4f46-80dc-36b8264fac9f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaine8b70966EASTUS2EUAP\",\r\n \"name\": \"egcrudrunnerdomaine8b70966EASTUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-usce-01.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0f415c0a-84a8-4d4f-b6fb-7a4f6f1828f8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-usce-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-usce-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-usce-02.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6e8f9963-ee76-44a0-bd2b-c406ed862a38\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-usce-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-usce-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2fd80f0d-7eeb-4322-8532-7f58eb537ace\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-CentralUSEUAP\",\r\n \"name\": \"eg-domains-latency-runner-domain-CentralUSEUAP\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7615.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"423bef80-a31f-48bc-ab3d-4638d4934da3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411/providers/Microsoft.EventGrid/domains/sdk-Domain-7615\",\r\n \"name\": \"sdk-Domain-7615\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8144.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"513972e7-51cf-4602-a7ef-033ca2ad838c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555/providers/Microsoft.EventGrid/domains/sdk-Domain-8144\",\r\n \"name\": \"sdk-Domain-8144\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-1520.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3caa1c7c-4c40-4254-874e-5d76d7c9fa76\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963/providers/Microsoft.EventGrid/domains/sdk-Domain-1520\",\r\n \"name\": \"sdk-Domain-1520\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2066.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"01c819bf-353c-4096-a9f1-9ae2adff2a53\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143/providers/Microsoft.EventGrid/domains/sdk-Domain-2066\",\r\n \"name\": \"sdk-Domain-2066\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8257.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"efdaca7e-0da7-471d-8ace-026019de1ee5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261/providers/Microsoft.EventGrid/domains/sdk-Domain-8257\",\r\n \"name\": \"sdk-Domain-8257\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2688.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce049360-c956-46c9-8548-11de7b85f121\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173/providers/Microsoft.EventGrid/domains/sdk-Domain-2688\",\r\n \"name\": \"sdk-Domain-2688\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-743.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c9671440-9f07-464c-a4dc-437a6a0b532b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718/providers/Microsoft.EventGrid/domains/sdk-Domain-743\",\r\n \"name\": \"sdk-Domain-743\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ce10domain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"mytopicfield\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"c3ebca20-e118-46df-aef5-c591767240aa\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest/providers/Microsoft.EventGrid/domains/ce10domain\",\r\n \"name\": \"ce10domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-usce-401.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a0f3986-68f7-4d1a-95f4-479047245fac\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-usce-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-usce-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7896.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b6a2534a-1a66-4177-91a8-4583e4079d9f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523/providers/Microsoft.EventGrid/domains/sdk-Domain-7896\",\r\n \"name\": \"sdk-Domain-7896\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-6892.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4149e385-e84f-441f-a8b1-53ea2944a3a8\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704/providers/Microsoft.EventGrid/domains/sdk-Domain-6892\",\r\n \"name\": \"sdk-Domain-6892\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7215.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dc4c3538-8b69-48b6-9a5f-a1453f43712a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994/providers/Microsoft.EventGrid/domains/sdk-Domain-7215\",\r\n \"name\": \"sdk-Domain-7215\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainb8166f22centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ee1c6403-1f90-4d54-bcec-fba69d1a6f08\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainb8166f22CentralUSEUAP\",\r\n \"name\": \"egcrudrunnerdomainb8166f22CentralUSEUAP\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1aa1661c-e989-4abe-9123-6482a039ea28\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/domains/domainName\",\r\n \"name\": \"domainName\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"14ffafe0-0af7-4d95-b2ee-53a13b81b3c0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"k1\": \"v1\",\r\n \"k2\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/domain1\",\r\n \"name\": \"domain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"72674d38-323b-46b4-8ecc-2e8796c13440\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup3\",\r\n \"name\": \"testDomainDup3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"49e25f59-2b16-4c05-96b1-353ff4011aac\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules\",\r\n \"name\": \"testDomain1IpRules\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b883639b-4292-4e41-9652-8657d390528e\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"101.0.0.90/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"101.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules3\",\r\n \"name\": \"testDomain1IpRules3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a3edc98f-ccda-4940-8a35-f1da15147cbb\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"19.12.43.90/20\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"19.12.43.70/23\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules4\",\r\n \"name\": \"testDomain1IpRules4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2228.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"67cd1def-742c-41f8-990f-c4bf54b938f6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035/providers/Microsoft.EventGrid/domains/sdk-Domain-2228\",\r\n \"name\": \"sdk-Domain-2228\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-193.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"4b2096f9-bb04-4d1e-a57c-17fbea082205\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772/providers/Microsoft.EventGrid/domains/sdk-Domain-193\",\r\n \"name\": \"sdk-Domain-193\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-9579.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"3fd59050-783d-4ba4-a750-e5d2d6610b6e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717/providers/Microsoft.EventGrid/domains/sdk-Domain-9579\",\r\n \"name\": \"sdk-Domain-9579\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-auc2-01.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-auc2-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-auc2-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-australiacentral2.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-australiacentral2\",\r\n \"name\": \"eg-domains-latency-runner-domain-australiacentral2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-auc2-02.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-auc2-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-auc2-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainb6e3fe27australiacentral2.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainb6e3fe27AustraliaCentral2\",\r\n \"name\": \"egcrudrunnerdomainb6e3fe27AustraliaCentral2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodfrso-02.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodfrso-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodfrso-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodfrso-01.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodfrso-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodfrso-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-francesouth.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-francesouth\",\r\n \"name\": \"eg-domains-latency-runner-domain-francesouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain51011b1cfrancesouth.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain51011b1cFranceSouth\",\r\n \"name\": \"egcrudrunnerdomain51011b1cFranceSouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southafricawest.southafricawest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southafricawest\",\r\n \"name\": \"eg-domains-latency-runner-domain-southafricawest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodsafw-01.southafricawest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodsafw-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodsafw-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodsafw-02.southafricawest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodsafw-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodsafw-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaina41e0f32southafricawest.southafricawest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaina41e0f32SouthAfricaWest\",\r\n \"name\": \"egcrudrunnerdomaina41e0f32SouthAfricaWest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-uaecentral.uaecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-uaecentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-uaecentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduaec-01.uaecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduaec-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduaec-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egproduaec-02.uaecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egproduaec-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egproduaec-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain90968fb1uaecentral.uaecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain90968fb1UAECentral\",\r\n \"name\": \"egcrudrunnerdomain90968fb1UAECentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-switzerlandwest.switzerlandwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-switzerlandwest\",\r\n \"name\": \"eg-domains-latency-runner-domain-switzerlandwest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodswwe-01.switzerlandwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodswwe-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodswwe-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodswwe-02.switzerlandwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodswwe-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodswwe-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain358e95beswitzerlandwest.switzerlandwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain358e95beSwitzerlandWest\",\r\n \"name\": \"egcrudrunnerdomain358e95beSwitzerlandWest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-germanynorth.germanynorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-germanynorth\",\r\n \"name\": \"eg-domains-latency-runner-domain-germanynorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodgeno-01.germanynorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodgeno-01\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodgeno-01\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-egprodgeno-02.germanynorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-egprodgeno-02\",\r\n \"name\": \"eg-domains-latency-runner-domain-egprodgeno-02\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain1271db16germanynorth.germanynorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain1271db16GermanyNorth\",\r\n \"name\": \"egcrudrunnerdomain1271db16GermanyNorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain19bdfc23norwaywest.norwaywest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain19bdfc23NorwayWest\",\r\n \"name\": \"egcrudrunnerdomain19bdfc23NorwayWest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-centralus.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1aba4634-cc67-414d-8a3e-17c52c842fa0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-centralus\",\r\n \"name\": \"eg-domains-latency-runner-domain-centralus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-251.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6127d2d6-ca64-4f4a-befa-023ed82e7212\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-401.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f8c95916-c4f2-4cca-9254-3945c1dfa772\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-252.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6bce2285-8ca2-4e58-9085-18eb071ddd69\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-usce-402.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6a4b545e-505e-44e4-8069-5562b0ea3a45\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-usce-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-usce-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fdae141b-5ded-42e6-8202-d75b49243a65\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westus2\",\r\n \"name\": \"eg-domains-latency-runner-domain-westus2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-401.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"82c824f3-8234-435e-8697-0c8767743fd9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-253.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"569a93eb-8123-4431-8d29-afe7bf4d6d58\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-253\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-253\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-252.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7051a5d9-d272-4386-a5ee-7687dbe2768f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-251.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"806813cd-c92e-4f52-b74b-bd8474eb22e9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usw2-402.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"99fc5d08-a8e8-49d2-a213-21138006fce1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usw2-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usw2-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain3.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8c2c8d2b-d07d-43a0-a9c7-1118cfa23fe5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"405c34b5-6a06-4fa7-b278-84da4f864ac4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"{tag1\": \"value1}\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain3\",\r\n \"name\": \"testDomain3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain30770b5awestus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7830c645-fe21-40eb-aa53-d798362e2184\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain30770b5aWestUS2\",\r\n \"name\": \"egcrudrunnerdomain30770b5aWestUS2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eastus.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"72cd7f4c-5521-48c6-9801-4c5bf1c31a53\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eastus\",\r\n \"name\": \"eg-domains-latency-runner-domain-eastus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://diagnosticlogdomains.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"69562a94-5c1e-42e8-bb7d-a04fff9363b0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/domains/diagnosticlogdomains\",\r\n \"name\": \"diagnosticlogdomains\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usea-401.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b5b7346a-bc40-4691-a30a-f6c7654e64dc\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usea-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usea-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usea-402.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8e009199-1bb8-46e5-8fd3-aeae89a2a79d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usea-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usea-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usea-251.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8449cb4c-9855-4616-8aa9-514dca35da83\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usea-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usea-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-usea-252.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b79a82dc-bec1-4e70-a3ce-384efffe1bbb\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-usea-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-usea-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainpermission.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a660ee42-0140-4bc0-8eda-6b1abdd42182\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"38fc1d76-d88e-46fb-a8ea-0427e9155a63\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainPermission\",\r\n \"name\": \"testDomainPermission\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaine91325adeastus.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e44caac1-f0b5-4204-b49d-b9cfe167eed4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaine91325adEastUS\",\r\n \"name\": \"egcrudrunnerdomaine91325adEastUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westus.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"967d82e4-1f19-42f5-abab-1f32abc5b0ea\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westus\",\r\n \"name\": \"eg-domains-latency-runner-domain-westus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msi-test.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b3c2ce3f-f055-4fd0-9f32-3ff45a89d474\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"6b1a416a-f09f-40f3-bc8f-3f909de0ab7f\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/domains/msi-test\",\r\n \"name\": \"msi-test\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain356a96edwestus.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5b0659e1-f214-48c5-863a-045e96674ee1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain356a96edWestUS\",\r\n \"name\": \"egcrudrunnerdomain356a96edWestUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eastus2.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a8a2a067-a583-442f-ac48-768c09dfc7ba\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eastus2\",\r\n \"name\": \"eg-domains-latency-runner-domain-eastus2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-use2-252.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"cad2ce83-d2a3-4621-9452-eff92974a469\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-use2-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-use2-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-use2-401.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3c1cf0e3-eb21-42e4-8e9a-6df81115182a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-use2-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-use2-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-use2-251.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d6eb6240-bbd7-444d-b179-60f899f112b4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-use2-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-use2-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-use2-402.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f4c59048-1bb5-4299-865a-e1b0c3674803\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-use2-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-use2-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain23bf3600eastus2.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6c5278de-25b3-4580-a214-bc0f22f1fcb1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain23bf3600EastUS2\",\r\n \"name\": \"egcrudrunnerdomain23bf3600EastUS2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westcentralus.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"378c5319-dfdd-48a2-8e56-b7fbb2b6b7cc\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westcentralus\",\r\n \"name\": \"eg-domains-latency-runner-domain-westcentralus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"85756ce7-823c-42bb-b79c-f4444783062f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"name\": \"clifxbhdae2ghiqajm6tewxzoei6csmkc4wfxdol\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventV01Schema\",\r\n \"metricResourceId\": \"862a3be0-1042-4ea5-9578-b30dfec763a6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"name\": \"clifq6nvajq6b2rumcwewnjdceisqw3vuqeevgzs\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopic\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"myEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"DefaultSubject\"\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"1.0\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b5929ed6-3101-4eaf-b925-819df5ef79d9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f/providers/Microsoft.EventGrid/domains/clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg\",\r\n \"name\": \"clilg2sh5dyeu5fgwchw4lpng74am4roxajyj7wg\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaine8dc8641westcentralus.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"262181a4-9de9-4b25-bc80-768e12f6382e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaine8dc8641WestCentralUS\",\r\n \"name\": \"egcrudrunnerdomaine8dc8641WestCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-australiaeast.australiaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"16bc9afb-2104-43ed-ad36-df2e2604a2a3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-australiaeast\",\r\n \"name\": \"eg-domains-latency-runner-australiaeast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaina9ef3804australiaeast.australiaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4e2bcc5e-7ad4-4343-86eb-583f1e174f28\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaina9ef3804AustraliaEast\",\r\n \"name\": \"egcrudrunnerdomaina9ef3804AustraliaEast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-astrlsthest.australiasoutheast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7b1c35a1-9ab7-4477-960d-ba56d5e06c1b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-AstrlSthest\",\r\n \"name\": \"eg-domains-latency-runner-domain-AstrlSthest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain2714fab5australiasoutheast.australiasoutheast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ca4dfdab-6911-4496-9969-1a07f572853e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain2714fab5AustraliaSoutheast\",\r\n \"name\": \"egcrudrunnerdomain2714fab5AustraliaSoutheast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-australiacentral.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ec63779e-fa88-4934-a225-a61058f8f856\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-australiacentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-australiacentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainauce.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88a48d35-21d8-4bf2-b263-d61dd3124961\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"australiacentral\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/domains/testdomainauce\",\r\n \"name\": \"testdomainauce\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain8048b6beaustraliacentral.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f764fc21-52ec-4349-a1af-5ce6bc28c204\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain8048b6beAustraliaCentral\",\r\n \"name\": \"egcrudrunnerdomain8048b6beAustraliaCentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-japaneast.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f0f83e64-e845-428f-96a0-3acdaec0b6a9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-japaneast\",\r\n \"name\": \"eg-domains-latency-runner-domain-japaneast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-japanwest.japanwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e0b342ba-a425-44fb-ba96-496d6d0eeb53\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-japanwest\",\r\n \"name\": \"eg-domains-latency-runner-domain-japanwest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain9de14162japanwest.japanwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f3077332-aadb-4fe1-8d75-7731677ec9f6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain9de14162JapanWest\",\r\n \"name\": \"egcrudrunnerdomain9de14162JapanWest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westeurope.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"85c46949-8b85-4925-a73b-7a9671b2b783\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westeurope\",\r\n \"name\": \"eg-domains-latency-runner-domain-westeurope\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-northeurope.northeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6cee4f49-7968-4bc5-adb2-d297cdc10c3c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-northeurope\",\r\n \"name\": \"eg-domains-latency-runner-domain-northeurope\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain0c213361northeurope.northeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"da8c5d8f-f1aa-4c01-8466-d6320676293f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain0c213361NorthEurope\",\r\n \"name\": \"egcrudrunnerdomain0c213361NorthEurope\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southeastasia.southeastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45602c7c-6e96-4db3-b8f2-9b0ab9a00415\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southeastasia\",\r\n \"name\": \"eg-domains-latency-runner-domain-southeastasia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaind583ce6dsoutheastasia.southeastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"888596fb-a339-4f92-9f79-07f54b9e3e70\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaind583ce6dSoutheastAsia\",\r\n \"name\": \"egcrudrunnerdomaind583ce6dSoutheastAsia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eastasia.eastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6d4e45a6-36db-4801-889e-59c4c1341473\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eastasia\",\r\n \"name\": \"eg-domains-latency-runner-domain-eastasia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainef46fd2feastasia.eastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7d0865d5-6c56-483a-8aea-d47e21ee14da\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainef46fd2fEastAsia\",\r\n \"name\": \"egcrudrunnerdomainef46fd2fEastAsia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-northcentralus.northcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0b6202eb-f4a5-4c11-ae8c-4b346ee6f922\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-northcentralus\",\r\n \"name\": \"eg-domains-latency-runner-domain-northcentralus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainf0b97963northcentralus.northcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a7084501-6bbd-4348-b5dc-913b0bbf9fb3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainf0b97963NorthCentralUS\",\r\n \"name\": \"egcrudrunnerdomainf0b97963NorthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southcentralus.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"25162019-ae74-495c-92b9-8a90a42e7398\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southcentralus\",\r\n \"name\": \"eg-domains-latency-runner-domain-southcentralus\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-ussc-401.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b70560e0-1473-4fbd-a13e-b592720fa350\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-ussc-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-ussc-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-ussc-251.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3d839408-3685-4eb4-b9f0-7f4915e5f418\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-ussc-251\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-ussc-251\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-ussc-402.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"44d9e83f-4c59-46f4-ada1-58100cd7851d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-ussc-402\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-ussc-402\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-prod-ussc-252.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"db542d4a-fa4b-4d89-9b2a-2447112de93d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-prod-ussc-252\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-prod-ussc-252\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishpdomain.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"data.one\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"10285d19-90e1-44e0-9489-20f008ebb278\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1/providers/Microsoft.EventGrid/domains/kishpdomain\",\r\n \"name\": \"kishpdomain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain3e35a2ccsouthcentralus.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"cb1f7520-0860-434d-9783-38bf739864e2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain3e35a2ccSouthCentralUS\",\r\n \"name\": \"egcrudrunnerdomain3e35a2ccSouthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-brazilsouth.brazilsouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"655463d4-59f9-4e4e-97ce-a63216261e49\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-brazilsouth\",\r\n \"name\": \"eg-domains-latency-runner-domain-brazilsouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaindadffaecbrazilsouth.brazilsouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"72c43236-10a3-4943-b17f-c7548074d600\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaindadffaecBrazilSouth\",\r\n \"name\": \"egcrudrunnerdomaindadffaecBrazilSouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-canadacentral.canadacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d15a29ac-3244-4ea0-bdaa-1a9920e3779d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-canadacentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-canadacentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-canadaeast.canadaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8744f73a-c0e2-4efd-9ae8-2543ab2a0436\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-canadaeast\",\r\n \"name\": \"eg-domains-latency-runner-domain-canadaeast\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-centralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"af458fa9-f186-411e-bcc5-2b43c3aa7708\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-centralindia\",\r\n \"name\": \"eg-domains-latency-runner-domain-centralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaincentralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1f4604eb-3f56-4df4-acd1-16188510dd5a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centralindia\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/domains/testdomaincentralindia\",\r\n \"name\": \"testdomaincentralindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain84d7cb3acentralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6d180690-ce2c-412b-9313-d03e1aba8c87\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain84d7cb3aCentralIndia\",\r\n \"name\": \"egcrudrunnerdomain84d7cb3aCentralIndia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southindia.southindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"815ae862-2f2c-4c4b-b6e6-c9154b63ee84\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southindia\",\r\n \"name\": \"eg-domains-latency-runner-domain-southindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain634074e3southindia.southindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0dbfce6f-686d-4018-ae56-2a10462a7c5c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain634074e3SouthIndia\",\r\n \"name\": \"egcrudrunnerdomain634074e3SouthIndia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-westindia.westindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c2540d88-ef90-4e86-9e5c-8fe5c9397f95\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-westindia\",\r\n \"name\": \"eg-domains-latency-runner-domain-westindia\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-francecentral.francecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d87dc520-e8b9-4802-880c-57cd9ac13881\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-francecentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-francecentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainff4fdccffrancecentral.francecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8826ecc9-d1a5-417c-8077-048e1f9aa103\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainff4fdccfFranceCentral\",\r\n \"name\": \"egcrudrunnerdomainff4fdccfFranceCentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-ukwest.ukwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a8a70b7f-5e45-4b9e-9390-4b19a94ebd9a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-ukwest\",\r\n \"name\": \"eg-domains-latency-runner-domain-ukwest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainac8f178bukwest.ukwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1d4285e0-0643-4041-a056-4c71af9fe052\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainac8f178bUKWest\",\r\n \"name\": \"egcrudrunnerdomainac8f178bUKWest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-uksouth.uksouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1e82cba9-9005-44e2-af14-eb6565e28492\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-uksouth\",\r\n \"name\": \"eg-domains-latency-runner-domain-uksouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain5d0b7382uksouth.uksouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f3dc642a-f306-4943-bf14-c23a4fd89710\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain5d0b7382UKSouth\",\r\n \"name\": \"egcrudrunnerdomain5d0b7382UKSouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-koreacentral.koreacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e51498ff-e30c-4c43-967e-2ab8e453ff18\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-koreacentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-koreacentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-koreasouth.koreasouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"22b25c34-1dfc-4096-8114-c5b9196aa93e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-koreasouth\",\r\n \"name\": \"eg-domains-latency-runner-domain-koreasouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain7fbb7be4koreasouth.koreasouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b289081f-a91f-4910-9a00-eae9777a0929\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain7fbb7be4KoreaSouth\",\r\n \"name\": \"egcrudrunnerdomain7fbb7be4KoreaSouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southafricanorth.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"372f6388-44b9-4a3e-aa1e-1f184a4a1318\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southafricanorth\",\r\n \"name\": \"eg-domains-latency-runner-domain-southafricanorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain085e452fsouthafricanorth.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"082a9885-c3ea-4aae-a479-3de1faf6a503\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain085e452fSouthAfricaNorth\",\r\n \"name\": \"egcrudrunnerdomain085e452fSouthAfricaNorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain5e32d9d8southafricanorth.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a7221619-0aea-42a1-8f7d-ab733655a75c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain5e32d9d8SouthAfricaNorth\",\r\n \"name\": \"egcrudrunnerdomain5e32d9d8SouthAfricaNorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-uaenorth.uaenorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"cc69f2c0-f24f-4a45-8817-8b7042166251\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-uaenorth\",\r\n \"name\": \"eg-domains-latency-runner-domain-uaenorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain9ad7b1fduaenorth.uaenorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d8d61144-df15-48c7-8627-2979032fedc5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain9ad7b1fdUAENorth\",\r\n \"name\": \"egcrudrunnerdomain9ad7b1fdUAENorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaindfa82888uaenorth.uaenorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dadeb79a-8e95-4328-8ddd-ebb21d5dbd22\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaindfa82888UAENorth\",\r\n \"name\": \"egcrudrunnerdomaindfa82888UAENorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-switzerlandnorth.switzerlandnorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f2147124-b358-465e-9194-f9e8780a496a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-switzerlandnorth\",\r\n \"name\": \"eg-domains-latency-runner-domain-switzerlandnorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-ltncy-runner-domain-gewestcentral.germanywestcentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"762d85d9-158b-4231-9972-8d17ac2333d1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Germany West Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral/providers/Microsoft.EventGrid/domains/eg-domains-ltncy-runner-domain-gewestcentral\",\r\n \"name\": \"eg-domains-ltncy-runner-domain-gewestcentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-east-us-2-euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c34d7dfb-7665-4850-9090-bd1b7859f359\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-east-us-2-euap\",\r\n \"name\": \"eg-domains-latency-runner-domain-east-us-2-euap\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egdmansltncyrunnerdomainlocaltesteastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6db03474-af0e-499a-8fb5-68e33a589f77\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/egdmansltncyrunnerdomainlocaltesteastus2euap\",\r\n \"name\": \"egdmansltncyrunnerdomainlocaltesteastus2euap\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup5.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b589ef01-2ca8-41c9-aa80-4bb99a938ea2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup5\",\r\n \"name\": \"testDomainDup5\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainff32d2edeastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0209139a-16de-4774-aafa-47fc05529174\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainff32d2edEASTUS2EUAP\",\r\n \"name\": \"egcrudrunnerdomainff32d2edEASTUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2fd80f0d-7eeb-4322-8532-7f58eb537ace\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-CentralUSEUAP\",\r\n \"name\": \"eg-domains-latency-runner-domain-CentralUSEUAP\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7615.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"423bef80-a31f-48bc-ab3d-4638d4934da3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411/providers/Microsoft.EventGrid/domains/sdk-Domain-7615\",\r\n \"name\": \"sdk-Domain-7615\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8144.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"513972e7-51cf-4602-a7ef-033ca2ad838c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555/providers/Microsoft.EventGrid/domains/sdk-Domain-8144\",\r\n \"name\": \"sdk-Domain-8144\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-1520.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3caa1c7c-4c40-4254-874e-5d76d7c9fa76\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963/providers/Microsoft.EventGrid/domains/sdk-Domain-1520\",\r\n \"name\": \"sdk-Domain-1520\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2066.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"01c819bf-353c-4096-a9f1-9ae2adff2a53\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143/providers/Microsoft.EventGrid/domains/sdk-Domain-2066\",\r\n \"name\": \"sdk-Domain-2066\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8257.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"efdaca7e-0da7-471d-8ace-026019de1ee5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261/providers/Microsoft.EventGrid/domains/sdk-Domain-8257\",\r\n \"name\": \"sdk-Domain-8257\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2688.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce049360-c956-46c9-8548-11de7b85f121\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173/providers/Microsoft.EventGrid/domains/sdk-Domain-2688\",\r\n \"name\": \"sdk-Domain-2688\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-743.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c9671440-9f07-464c-a4dc-437a6a0b532b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718/providers/Microsoft.EventGrid/domains/sdk-Domain-743\",\r\n \"name\": \"sdk-Domain-743\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ce10domain.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": null\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"mytopicfield\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": null\r\n },\r\n \"eventType\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": null\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"c3ebca20-e118-46df-aef5-c591767240aa\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest/providers/Microsoft.EventGrid/domains/ce10domain\",\r\n \"name\": \"ce10domain\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-eg-euap-usce-401.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a0f3986-68f7-4d1a-95f4-479047245fac\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-eg-euap-usce-401\",\r\n \"name\": \"eg-domains-latency-runner-domain-eg-euap-usce-401\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7896.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b6a2534a-1a66-4177-91a8-4583e4079d9f\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523/providers/Microsoft.EventGrid/domains/sdk-Domain-7896\",\r\n \"name\": \"sdk-Domain-7896\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-6892.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4149e385-e84f-441f-a8b1-53ea2944a3a8\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704/providers/Microsoft.EventGrid/domains/sdk-Domain-6892\",\r\n \"name\": \"sdk-Domain-6892\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-7215.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dc4c3538-8b69-48b6-9a5f-a1453f43712a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994/providers/Microsoft.EventGrid/domains/sdk-Domain-7215\",\r\n \"name\": \"sdk-Domain-7215\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domainname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1aa1661c-e989-4abe-9123-6482a039ea28\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/domains/domainName\",\r\n \"name\": \"domainName\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://domain1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"14ffafe0-0af7-4d95-b2ee-53a13b81b3c0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"k1\": \"v1\",\r\n \"k2\": \"v2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/domain1\",\r\n \"name\": \"domain1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomaindup3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"72674d38-323b-46b4-8ecc-2e8796c13440\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainDup3\",\r\n \"name\": \"testDomainDup3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"49e25f59-2b16-4c05-96b1-353ff4011aac\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"cb40d9ec-0525-4c6b-9932-90af6d969ea5\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules\",\r\n \"name\": \"testDomain1IpRules\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules3.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b883639b-4292-4e41-9652-8657d390528e\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"101.0.0.90/2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"101.0.0.70/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"43334277-98f7-4892-bba5-1b7ec2766660\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules3\",\r\n \"name\": \"testDomain1IpRules3\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain1iprules4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a3edc98f-ccda-4940-8a35-f1da15147cbb\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"19.12.43.90/20\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"19.12.43.70/23\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ecea7475-58f7-44c1-9ab3-4993b5983568\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain1IpRules4\",\r\n \"name\": \"testDomain1IpRules4\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-2228.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"67cd1def-742c-41f8-990f-c4bf54b938f6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035/providers/Microsoft.EventGrid/domains/sdk-Domain-2228\",\r\n \"name\": \"sdk-Domain-2228\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-193.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"4b2096f9-bb04-4d1e-a57c-17fbea082205\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772/providers/Microsoft.EventGrid/domains/sdk-Domain-193\",\r\n \"name\": \"sdk-Domain-193\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-9579.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"3fd59050-783d-4ba4-a750-e5d2d6610b6e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717/providers/Microsoft.EventGrid/domains/sdk-Domain-9579\",\r\n \"name\": \"sdk-Domain-9579\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomain12321.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a0e71c0-190a-4d2d-81d2-802b458a982b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomain12321\",\r\n \"name\": \"testDomain12321\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1cdb87a6-c89b-4f4f-adf1-47f718d8b00e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering1\",\r\n \"name\": \"testDomainIpFiltering1\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering10.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ac61c0dd-8983-491c-9cb0-5f4d1609197b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering10\",\r\n \"name\": \"testDomainIpFiltering10\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdomainipfiltering11.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"52a3c764-c754-4f28-8e1b-6eddf99638ff\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.2.0.0/8\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/domains/testDomainIpFiltering11\",\r\n \"name\": \"testDomainIpFiltering11\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msidomaintest.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"21579cac-a347-4dc1-8bcf-0fb418d214d4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"40875041-7116-4b7c-b202-2de3912febe7\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain/providers/Microsoft.EventGrid/domains/msidomaintest\",\r\n \"name\": \"msidomaintest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-australiacentral2.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a95632ea-4043-47a9-8bf8-57339b593941\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-australiacentral2\",\r\n \"name\": \"eg-domains-latency-runner-domain-australiacentral2\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-francesouth.francesouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0cf1ec4f-f247-4ba3-85b9-82fb2ce716b6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-francesouth\",\r\n \"name\": \"eg-domains-latency-runner-domain-francesouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomain83d4e058francesouth.francesouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"93dc4f14-a1c7-4c36-a402-4ea6ce830877\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/domains/egcrudrunnerdomain83d4e058FranceSouth\",\r\n \"name\": \"egcrudrunnerdomain83d4e058FranceSouth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-southafricawest.southafricawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c2626a7b-2c7b-4060-bd40-c5058a5ff3b2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-southafricawest\",\r\n \"name\": \"eg-domains-latency-runner-domain-southafricawest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-uaecentral.uaecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"cc006503-5330-4bfb-93c3-c5320d4320d4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-uaecentral\",\r\n \"name\": \"eg-domains-latency-runner-domain-uaecentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomainbb1c8961uaecentral.uaecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"87917119-0556-46b3-a82d-2a3835f07316\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/domains/egcrudrunnerdomainbb1c8961UAECentral\",\r\n \"name\": \"egcrudrunnerdomainbb1c8961UAECentral\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-switzerlandwest.switzerlandwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1d4affd2-6ca6-462a-b827-cbb8acc975fe\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Switzerland West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-switzerlandwest\",\r\n \"name\": \"eg-domains-latency-runner-domain-switzerlandwest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-domains-latency-runner-domain-germanynorth.germanynorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d5f76547-08ba-48bb-92ac-4d342a7a82b9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Germany North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth/providers/Microsoft.EventGrid/domains/eg-domains-latency-runner-domain-germanynorth\",\r\n \"name\": \"eg-domains-latency-runner-domain-germanynorth\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerdomaina125ade0norwaywest.norwaywest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"80c57932-0219-4875-965e-c505fd5c4b7d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"Norway West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest/providers/Microsoft.EventGrid/domains/egcrudrunnerdomaina125ade0NorwayWest\",\r\n \"name\": \"egcrudrunnerdomaina125ade0NorwayWest\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/612C017C-C107-450B-AC5A-A0B76D230376?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNjEyQzAxN0MtQzEwNy00NTBCLUFDNUEtQTBCNzZEMjMwMzc2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/76480BEC-6504-49F6-8C72-0FF5F632003C?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNzY0ODBCRUMtNjUwNC00OUY2LThDNzItMEZGNUY2MzIwMDNDP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e2235d7f-7574-4649-88a3-3e971a426209" + "cfe8248e-5355-4386-81ea-d101710f0d94" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11990" ], "x-ms-correlation-request-id": [ - "f0b3a897-7d8b-47e8-8fbb-73201e7da40c" + "d44a8ce2-3e7c-452f-9585-b2e4a4b76762" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015248Z:f0b3a897-7d8b-47e8-8fbb-73201e7da40c" + "CENTRALUSEUAP:20210219T005058Z:d44a8ce2-3e7c-452f-9585-b2e4a4b76762" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:58 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1046,26 +1045,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/612C017C-C107-450B-AC5A-A0B76D230376?api-version=2020-06-01\",\r\n \"name\": \"612c017c-c107-450b-ac5a-a0b76d230376\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/76480BEC-6504-49F6-8C72-0FF5F632003C?api-version=2020-10-15-preview\",\r\n \"name\": \"76480bec-6504-49f6-8c72-0ff5f632003c\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"properties\": {\r\n \"publicNetworkAccess\": \"Enabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "15eaae25-8abb-4de5-82c6-698fb8a3e273" + "ef46f226-469c-4dfa-aa78-9ebe95d4b1cc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1078,41 +1077,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:49 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DE706EF4-857C-4B87-9704-9233D8E6347F?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/45E3259C-160F-4978-A8C0-B0F75D7E560F?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "c3309481-b65d-4f4c-9f0d-e391bffffb8f" + "555b7935-1cb7-4eec-9845-6bb1d268f925" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "adc6d696-82ee-4179-9fb3-88adc3672ea1" + "4433f1b5-2029-45ff-9bc3-993ea32980d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015249Z:adc6d696-82ee-4179-9fb3-88adc3672ea1" + "CENTRALUSEUAP:20210219T005059Z:4433f1b5-2029-45ff-9bc3-993ea32980d9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:59 GMT" + ], "Content-Length": [ - "750" + "776" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1121,55 +1120,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": \"https://sdk-domain-640.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"b4f9d88c-b4c8-4e5a-9dc5-10e51460b104\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640\",\r\n \"name\": \"sdk-Domain-640\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": \"https://sdk-domain-4775.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": null,\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": null,\r\n \"eventType\": null,\r\n \"subject\": null,\r\n \"dataVersion\": null\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"e781acfc-467d-4605-ba92-2f32fc25e48d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775\",\r\n \"name\": \"sdk-Domain-4775\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DE706EF4-857C-4B87-9704-9233D8E6347F?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvREU3MDZFRjQtODU3Qy00Qjg3LTk3MDQtOTIzM0Q4RTYzNDdGP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/45E3259C-160F-4978-A8C0-B0F75D7E560F?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDVFMzI1OUMtMTYwRi00OTc4LUE4QzAtQjBGNzVEN0U1NjBGP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:52:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "500babed-221f-4dc9-8a41-d0c2b95bcbf7" + "554c93c6-07e1-46bc-a38a-426729ebc2d6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11988" ], "x-ms-correlation-request-id": [ - "ed81bf43-acf5-430b-9410-5b9b09f7a184" + "4aceb0b7-2586-4078-9602-03b0fb19f298" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015259Z:ed81bf43-acf5-430b-9410-5b9b09f7a184" + "CENTRALUSEUAP:20210219T005109Z:4aceb0b7-2586-4078-9602-03b0fb19f298" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:09 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1178,55 +1177,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DE706EF4-857C-4B87-9704-9233D8E6347F?api-version=2020-06-01\",\r\n \"name\": \"de706ef4-857c-4b87-9704-9233d8e6347f\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/45E3259C-160F-4978-A8C0-B0F75D7E560F?api-version=2020-10-15-preview\",\r\n \"name\": \"45e3259c-160f-4978-a8c0-b0f75d7e560f\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/84895A1E-07C5-4E18-82CB-D607C172CD15?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvODQ4OTVBMUUtMDdDNS00RTE4LTgyQ0ItRDYwN0MxNzJDRDE1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/89316C4C-0F2B-4CD2-B65D-797F8AC99CC3?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvODkzMTZDNEMtMEYyQi00Q0QyLUI2NUQtNzk3RjhBQzk5Q0MzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d33aef1-0dec-48e8-a438-01c6c5d93129" + "973eb7ef-be13-4357-8451-b0e3fc6956de" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11986" ], "x-ms-correlation-request-id": [ - "557a8537-1d4a-4aba-8b17-6ba633c6c299" + "9bb239bf-ef6f-4587-a6a1-d3277dfffc76" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015310Z:557a8537-1d4a-4aba-8b17-6ba633c6c299" + "CENTRALUSEUAP:20210219T005120Z:9bb239bf-ef6f-4587-a6a1-d3277dfffc76" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:20 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1235,67 +1234,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/84895A1E-07C5-4E18-82CB-D607C172CD15?api-version=2020-06-01\",\r\n \"name\": \"84895a1e-07c5-4e18-82cb-d607c172cd15\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/89316C4C-0F2B-4CD2-B65D-797F8AC99CC3?api-version=2020-10-15-preview\",\r\n \"name\": \"89316c4c-0f2b-4cd2-b65d-797f8ac99cc3\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNzc3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTQxNzg/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebaedf83-b4cf-47a1-b7c8-804ce3fff130" + "573e42ba-ad4d-475c-bd51-33c1b47f6a45" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:10 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/018FCC16-D936-428D-8711-0089C1A2113B?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/4DC0509B-FE68-473A-9ED2-2E72DB4D8C08?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "12f6e6c9-696f-426b-8642-e02f80e7198b" + "96e8eca9-c39d-400d-a328-e18bb6dd6f6d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "4f1ca393-0cce-4704-8ab6-c02033a17a94" + "f6793653-b0c0-418a-a22c-bc0eaa5e929a" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015311Z:4f1ca393-0cce-4704-8ab6-c02033a17a94" + "CENTRALUSEUAP:20210219T005121Z:f6793653-b0c0-418a-a22c-bc0eaa5e929a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:21 GMT" + ], "Content-Length": [ - "298" + "299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1304,55 +1303,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775\",\r\n \"name\": \"sdk-DomainTopic-7775\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178\",\r\n \"name\": \"sdk-DomainTopic-4178\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/018FCC16-D936-428D-8711-0089C1A2113B?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMDE4RkNDMTYtRDkzNi00MjhELTg3MTEtMDA4OUMxQTIxMTNCP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/4DC0509B-FE68-473A-9ED2-2E72DB4D8C08?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNERDMDUwOUItRkU2OC00NzNBLTlFRDItMkU3MkRCNEQ4QzA4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "34bbfff7-bbae-4c5b-bc48-a2f899911a69" + "de8cad6b-d648-48c8-8437-7d0341cf686d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11984" ], "x-ms-correlation-request-id": [ - "002c524c-e42d-407b-b361-392fb9b022ed" + "c341834d-fbc0-4a4b-9a73-801ec8c51566" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015321Z:002c524c-e42d-407b-b361-392fb9b022ed" + "CENTRALUSEUAP:20210219T005131Z:c341834d-fbc0-4a4b-9a73-801ec8c51566" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:31 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1361,55 +1360,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/018FCC16-D936-428D-8711-0089C1A2113B?api-version=2020-06-01\",\r\n \"name\": \"018fcc16-d936-428d-8711-0089c1a2113b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/4DC0509B-FE68-473A-9ED2-2E72DB4D8C08?api-version=2020-10-15-preview\",\r\n \"name\": \"4dc0509b-fe68-473a-9ed2-2e72db4d8c08\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNzc3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTQxNzg/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "daee7bd3-2222-4cce-80a8-7b2f29781a9b" + "a3315fd8-48b0-43d0-a16c-b6f6b70ec9ce" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "899" ], "x-ms-correlation-request-id": [ - "ef40fa7f-f75d-4bce-961a-17c1294e79e2" + "52239c3d-33c5-4ab9-8541-c4524bad0d80" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015321Z:ef40fa7f-f75d-4bce-961a-17c1294e79e2" + "CENTRALUSEUAP:20210219T005132Z:52239c3d-33c5-4ab9-8541-c4524bad0d80" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:31 GMT" + ], "Content-Length": [ - "299" + "300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1418,61 +1417,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775\",\r\n \"name\": \"sdk-DomainTopic-7775\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178\",\r\n \"name\": \"sdk-DomainTopic-4178\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNzc3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTQxNzg/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63c4dc6e-644b-4154-b687-cf3c0a6c5b2b" + "b00e25a1-740e-4418-a6eb-965799306ce9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:25 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1c3b6db5-6e28-4ea1-b008-6c16b547e96d" + "f8c3af5e-d534-43bc-99e6-021087472104" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "898" ], "x-ms-correlation-request-id": [ - "57f90535-4984-4743-b368-f53ad8602fa4" + "5dbfeb19-2c72-4315-ab7a-1b40d9140a04" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015326Z:57f90535-4984-4743-b368-f53ad8602fa4" + "CENTRALUSEUAP:20210219T005137Z:5dbfeb19-2c72-4315-ab7a-1b40d9140a04" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:36 GMT" + ], "Content-Length": [ - "299" + "300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1481,61 +1480,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775\",\r\n \"name\": \"sdk-DomainTopic-7775\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178\",\r\n \"name\": \"sdk-DomainTopic-4178\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNzc3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTQxNzg/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53750073-9a96-41f0-8f32-31ec3774e2d3" + "f9c5f1ba-3522-4ea1-b641-e2a024c736ba" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:25 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "46f35f62-d3bd-4cbe-87e5-0ac3000e3f92" + "0de829cb-132f-4de1-869a-08d5ae2fa743" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "897" ], "x-ms-correlation-request-id": [ - "13d6b304-3321-4acd-a17a-8f4bbfc06075" + "e6ad6a93-6ce4-495a-8440-fdb65623fc54" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015326Z:13d6b304-3321-4acd-a17a-8f4bbfc06075" + "CENTRALUSEUAP:20210219T005137Z:e6ad6a93-6ce4-495a-8440-fdb65623fc54" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:37 GMT" + ], "Content-Length": [ - "299" + "300" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1544,67 +1543,67 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775\",\r\n \"name\": \"sdk-DomainTopic-7775\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178\",\r\n \"name\": \"sdk-DomainTopic-4178\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtOTcwND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTE4Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f1e92e4-47b0-4096-aa32-8557a25e3618" + "5645f993-f813-4c20-a93f-752729d3758e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:25 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/06B1BA50-8C97-4E20-AA86-EADBDC1AC72B?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/0DA4429F-BD6D-43F2-93E6-4376E45D0966?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "cfd9531e-40c3-4a7e-9ecc-595ab3c1a157" + "d7bef4f5-2d49-456f-981f-ef65dfcfabda" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1192" ], "x-ms-correlation-request-id": [ - "937c645d-e650-40c7-aef2-ae9eeb41a725" + "d0ca4e87-c3f9-4f8d-9534-ab1859afee7e" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015326Z:937c645d-e650-40c7-aef2-ae9eeb41a725" + "CENTRALUSEUAP:20210219T005138Z:d0ca4e87-c3f9-4f8d-9534-ab1859afee7e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:37 GMT" + ], "Content-Length": [ - "298" + "297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1613,55 +1612,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704\",\r\n \"name\": \"sdk-DomainTopic-9704\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187\",\r\n \"name\": \"sdk-DomainTopic-187\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/06B1BA50-8C97-4E20-AA86-EADBDC1AC72B?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMDZCMUJBNTAtOEM5Ny00RTIwLUFBODYtRUFEQkRDMUFDNzJCP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/0DA4429F-BD6D-43F2-93E6-4376E45D0966?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMERBNDQyOUYtQkQ2RC00M0YyLTkzRTYtNDM3NkU0NUQwOTY2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8ed4d677-dcd7-45b6-acd0-c7d8ef54e88e" + "e8fe1c0b-ad26-45bb-a5da-ebdc82af9de8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11983" ], "x-ms-correlation-request-id": [ - "5ec21a5f-4219-4176-9368-df55a78722f2" + "b5ef2919-0824-40ad-b39b-8c78c723e013" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015336Z:5ec21a5f-4219-4176-9368-df55a78722f2" + "CENTRALUSEUAP:20210219T005148Z:b5ef2919-0824-40ad-b39b-8c78c723e013" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:48 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1670,55 +1669,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/06B1BA50-8C97-4E20-AA86-EADBDC1AC72B?api-version=2020-06-01\",\r\n \"name\": \"06b1ba50-8c97-4e20-aa86-eadbdc1ac72b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/0DA4429F-BD6D-43F2-93E6-4376E45D0966?api-version=2020-10-15-preview\",\r\n \"name\": \"0da4429f-bd6d-43f2-93e6-4376e45d0966\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtOTcwND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTE4Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "90c775de-3666-4090-a17a-4b35a18458e0" + "03ec0daf-ab2e-41fa-9f4f-860468dc7d95" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "896" ], "x-ms-correlation-request-id": [ - "b32553a8-7763-4aa5-aae9-f08e4cfe8c62" + "9dd84d6f-d1b7-4256-85a9-6e43caa1f46f" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015337Z:b32553a8-7763-4aa5-aae9-f08e4cfe8c62" + "CENTRALUSEUAP:20210219T005148Z:9dd84d6f-d1b7-4256-85a9-6e43caa1f46f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:48 GMT" + ], "Content-Length": [ - "299" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1727,61 +1726,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704\",\r\n \"name\": \"sdk-DomainTopic-9704\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187\",\r\n \"name\": \"sdk-DomainTopic-187\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtOTcwND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTE4Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a5c1d9b-a14b-4ceb-beaf-eb2690c0d509" + "6622cca5-e5b2-4658-a673-91447def52cc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0ac1a753-df65-4af1-9a50-301026d0ec43" + "2c58fb4e-3134-4f34-bf70-3390fdb5f519" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "895" ], "x-ms-correlation-request-id": [ - "fc14d4d5-7bba-4f18-be68-697e8d5675e6" + "c2d5d0f4-9ef4-4db0-ac73-45c5ef248886" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015342Z:fc14d4d5-7bba-4f18-be68-697e8d5675e6" + "CENTRALUSEUAP:20210219T005153Z:c2d5d0f4-9ef4-4db0-ac73-45c5ef248886" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:53 GMT" + ], "Content-Length": [ - "299" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1790,61 +1789,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704\",\r\n \"name\": \"sdk-DomainTopic-9704\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187\",\r\n \"name\": \"sdk-DomainTopic-187\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtOTcwND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTE4Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "100cfb55-b4d3-4a0c-9c50-c58691ccb2fd" + "d665a400-98e9-4410-8caa-22af7347dc19" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f57f9aab-730a-4be1-83e4-84e0e8d8c752" + "c8d5d5be-91ad-4bb5-b1da-c8dab3c0aa83" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "894" ], "x-ms-correlation-request-id": [ - "6a2dbca3-57a5-4fd1-9657-598f7b0988a1" + "ddc89fdd-2106-4a16-860c-2a767d86f3d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015342Z:6a2dbca3-57a5-4fd1-9657-598f7b0988a1" + "CENTRALUSEUAP:20210219T005153Z:ddc89fdd-2106-4a16-860c-2a767d86f3d6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:53 GMT" + ], "Content-Length": [ - "299" + "298" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1853,59 +1852,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704\",\r\n \"name\": \"sdk-DomainTopic-9704\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187\",\r\n \"name\": \"sdk-DomainTopic-187\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3M/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7485872b-5722-4ea7-81c4-4028b4f3736a" + "d6d93203-9a81-47b9-8fa4-1191296f4874" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d1f41e6f-c3b7-4c81-bec7-5a62cb4dbaa0" + "8f8f4ae4-2e88-478d-8f23-21376811915d" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "893" ], "x-ms-correlation-request-id": [ - "5fa2823f-37d2-48c4-a1ec-7c20671bbadd" + "6089e9d9-2578-4936-91fc-aea53df79553" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015342Z:5fa2823f-37d2-48c4-a1ec-7c20671bbadd" + "CENTRALUSEUAP:20210219T005153Z:6089e9d9-2578-4936-91fc-aea53df79553" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:51:53 GMT" + ], "Content-Length": [ "611" ], @@ -1916,124 +1915,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775\",\r\n \"name\": \"sdk-DomainTopic-7775\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704\",\r\n \"name\": \"sdk-DomainTopic-9704\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178\",\r\n \"name\": \"sdk-DomainTopic-4178\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187\",\r\n \"name\": \"sdk-DomainTopic-187\",\r\n \"type\": \"Microsoft.EventGrid/domains/topics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-7775?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNzc3NT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-4178?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTQxNzg/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f109b4a2-1c90-43ee-8c9b-526ea8a8809f" + "bd60b081-d9f3-44bd-8334-9490668bdd9f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:42 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/3A2D6B5A-A164-418C-AC86-398B21735402?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/FD808630-222C-4F4F-BE9F-96C5FDBBA027?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/3A2D6B5A-A164-418C-AC86-398B21735402?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/FD808630-222C-4F4F-BE9F-96C5FDBBA027?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "099bed2a-491b-422d-8754-f95ae023ac52" + "7d3a447b-9f77-470e-801f-949d1c58722e" ], "x-ms-correlation-request-id": [ - "099bed2a-491b-422d-8754-f95ae023ac52" + "7d3a447b-9f77-470e-801f-949d1c58722e" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015342Z:099bed2a-491b-422d-8754-f95ae023ac52" + "CENTRALUSEUAP:20210219T005154Z:7d3a447b-9f77-470e-801f-949d1c58722e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:51:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/3A2D6B5A-A164-418C-AC86-398B21735402?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvM0EyRDZCNUEtQTE2NC00MThDLUFDODYtMzk4QjIxNzM1NDAyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/FD808630-222C-4F4F-BE9F-96C5FDBBA027?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRkQ4MDg2MzAtMjIyQy00RjRGLUJFOUYtOTZDNUZEQkJBMDI3P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1aa439e9-0866-409c-8433-2ef20cd1ed44" + "4bc2efef-41d0-4892-8ed6-94929a22de3e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11982" ], "x-ms-correlation-request-id": [ - "503dc8bb-6f82-4aa8-a172-ca9f01a356ed" + "76ef7e76-01ce-4272-be7e-3a1099b1f143" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015352Z:503dc8bb-6f82-4aa8-a172-ca9f01a356ed" + "CENTRALUSEUAP:20210219T005204Z:76ef7e76-01ce-4272-be7e-3a1099b1f143" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:04 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2042,178 +2041,178 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/3A2D6B5A-A164-418C-AC86-398B21735402?api-version=2020-06-01\",\r\n \"name\": \"3a2d6b5a-a164-418c-ac86-398b21735402\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/FD808630-222C-4F4F-BE9F-96C5FDBBA027?api-version=2020-10-15-preview\",\r\n \"name\": \"fd808630-222c-4f4f-be9f-96c5fdbba027\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/3A2D6B5A-A164-418C-AC86-398B21735402?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvM0EyRDZCNUEtQTE2NC00MThDLUFDODYtMzk4QjIxNzM1NDAyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/FD808630-222C-4F4F-BE9F-96C5FDBBA027?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvRkQ4MDg2MzAtMjIyQy00RjRGLUJFOUYtOTZDNUZEQkJBMDI3P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "829d6d24-dceb-4802-a169-24a23f478bfe" + "7f931e00-6031-4957-9d07-8db5bc9d20aa" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11981" ], "x-ms-correlation-request-id": [ - "ea171765-d492-413b-8478-9b5c7d667845" + "2013a6db-3a52-48bf-9a45-0eb3bcf6217a" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015352Z:ea171765-d492-413b-8478-9b5c7d667845" + "CENTRALUSEUAP:20210219T005204Z:2013a6db-3a52-48bf-9a45-0eb3bcf6217a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:52:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640/topics/sdk-DomainTopic-9704?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwL3RvcGljcy9zZGstRG9tYWluVG9waWMtOTcwND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775/topics/sdk-DomainTopic-187?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NS90b3BpY3Mvc2RrLURvbWFpblRvcGljLTE4Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "400dbc35-57c0-4993-868f-fbcb0f8840b5" + "5d1ec8b7-798d-4f3b-914b-a7d04d0a3697" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:53:53 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/E7BF2F7E-39B4-4833-B8A0-D4ECD1407586?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/06EA842D-0689-4691-B9FD-5FF27A23E9E5?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/E7BF2F7E-39B4-4833-B8A0-D4ECD1407586?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/06EA842D-0689-4691-B9FD-5FF27A23E9E5?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-request-id": [ - "d362171b-1f93-4f3a-b161-5df90f04a6c7" + "f0517513-8c00-408e-b4d1-fb991e2ccd70" ], "x-ms-correlation-request-id": [ - "d362171b-1f93-4f3a-b161-5df90f04a6c7" + "f0517513-8c00-408e-b4d1-fb991e2ccd70" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015353Z:d362171b-1f93-4f3a-b161-5df90f04a6c7" + "CENTRALUSEUAP:20210219T005205Z:f0517513-8c00-408e-b4d1-fb991e2ccd70" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:52:05 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/E7BF2F7E-39B4-4833-B8A0-D4ECD1407586?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRTdCRjJGN0UtMzlCNC00ODMzLUI4QTAtRDRFQ0QxNDA3NTg2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/06EA842D-0689-4691-B9FD-5FF27A23E9E5?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMDZFQTg0MkQtMDY4OS00NjkxLUI5RkQtNUZGMjdBMjNFOUU1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7fc90ef5-3a62-4c90-a3f6-b1710122956e" + "cf83e957-d1b4-4ffb-abd2-61652a8ed29c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11980" ], "x-ms-correlation-request-id": [ - "b0609173-9b90-439b-af7b-35bc6721e463" + "a9b12c39-d926-43f5-a3b3-3abef3935a7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015403Z:b0609173-9b90-439b-af7b-35bc6721e463" + "CENTRALUSEUAP:20210219T005215Z:a9b12c39-d926-43f5-a3b3-3abef3935a7b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:15 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2222,178 +2221,178 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/E7BF2F7E-39B4-4833-B8A0-D4ECD1407586?api-version=2020-06-01\",\r\n \"name\": \"e7bf2f7e-39b4-4833-b8a0-d4ecd1407586\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/06EA842D-0689-4691-B9FD-5FF27A23E9E5?api-version=2020-10-15-preview\",\r\n \"name\": \"06ea842d-0689-4691-b9fd-5ff27a23e9e5\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/E7BF2F7E-39B4-4833-B8A0-D4ECD1407586?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvRTdCRjJGN0UtMzlCNC00ODMzLUI4QTAtRDRFQ0QxNDA3NTg2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/06EA842D-0689-4691-B9FD-5FF27A23E9E5?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvMDZFQTg0MkQtMDY4OS00NjkxLUI5RkQtNUZGMjdBMjNFOUU1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "05679108-0957-44fa-88e1-992f6fd61d16" + "6fcc7262-c53e-449b-930d-404c5103197b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11979" ], "x-ms-correlation-request-id": [ - "3f1282ae-0395-4d7e-b659-bea3916f84ce" + "2a4461c8-3475-4a76-989d-a049f0ef53ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015403Z:3f1282ae-0395-4d7e-b659-bea3916f84ce" + "CENTRALUSEUAP:20210219T005215Z:2a4461c8-3475-4a76-989d-a049f0ef53ab" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:52:15 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326/providers/Microsoft.EventGrid/domains/sdk-Domain-640?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDMyNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNjQwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822/providers/Microsoft.EventGrid/domains/sdk-Domain-4775?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTgyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNDc3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec1cc5db-7fa3-46b7-b68b-509ad340cf1d" + "0ecd5442-6a14-4623-b0b6-8effc52c3d7b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:03 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/EAB183AE-CBAC-4B02-80D9-64BEEEFD4CE2?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/AAA0BBDA-3534-4919-B5A9-DFED3E39AD8F?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/EAB183AE-CBAC-4B02-80D9-64BEEEFD4CE2?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/AAA0BBDA-3534-4919-B5A9-DFED3E39AD8F?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-request-id": [ - "c23ec6ae-ba0c-4bb9-93cb-eefed7a3de5e" + "7f936b5d-ab4d-4a68-a420-5418beefb930" ], "x-ms-correlation-request-id": [ - "c23ec6ae-ba0c-4bb9-93cb-eefed7a3de5e" + "7f936b5d-ab4d-4a68-a420-5418beefb930" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015403Z:c23ec6ae-ba0c-4bb9-93cb-eefed7a3de5e" + "CENTRALUSEUAP:20210219T005215Z:7f936b5d-ab4d-4a68-a420-5418beefb930" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:52:15 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/EAB183AE-CBAC-4B02-80D9-64BEEEFD4CE2?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRUFCMTgzQUUtQ0JBQy00QjAyLTgwRDktNjRCRUVFRkQ0Q0UyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/AAA0BBDA-3534-4919-B5A9-DFED3E39AD8F?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQUFBMEJCREEtMzUzNC00OTE5LUI1QTktREZFRDNFMzlBRDhGP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b4ea42e5-3ebc-4ccf-a419-22b5e7459548" + "fdc19610-7c6b-4337-8613-1a3a1023e50a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11978" ], "x-ms-correlation-request-id": [ - "80aaac3f-2c31-46cc-aedc-4a764ddd1331" + "fe847a0f-e704-4470-8730-37db527f5669" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015414Z:80aaac3f-2c31-46cc-aedc-4a764ddd1331" + "CENTRALUSEUAP:20210219T005225Z:fe847a0f-e704-4470-8730-37db527f5669" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:25 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2402,58 +2401,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/EAB183AE-CBAC-4B02-80D9-64BEEEFD4CE2?api-version=2020-06-01\",\r\n \"name\": \"eab183ae-cbac-4b02-80d9-64beeefd4ce2\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/AAA0BBDA-3534-4919-B5A9-DFED3E39AD8F?api-version=2020-10-15-preview\",\r\n \"name\": \"aaa0bbda-3534-4919-b5a9-dfed3e39ad8f\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/EAB183AE-CBAC-4B02-80D9-64BEEEFD4CE2?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvRUFCMTgzQUUtQ0JBQy00QjAyLTgwRDktNjRCRUVFRkQ0Q0UyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/AAA0BBDA-3534-4919-B5A9-DFED3E39AD8F?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvQUFBMEJCREEtMzUzNC00OTE5LUI1QTktREZFRDNFMzlBRDhGP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:13 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7e27c453-a656-457b-a617-a49c0b9d6c91" + "987b5ee5-00d5-49e7-94a3-162bae6954b3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11977" ], "x-ms-correlation-request-id": [ - "96c96de3-438b-4316-ad68-ec9faef96305" + "5e185087-6be9-4565-a9e8-b4ad7411552e" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015414Z:96c96de3-438b-4316-ad68-ec9faef96305" + "CENTRALUSEUAP:20210219T005226Z:5e185087-6be9-4565-a9e8-b4ad7411552e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:52:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -2462,10 +2461,10 @@ ], "Names": { "DomainCreateGetUpdateDelete": [ - "sdk-EventGrid-RG-4326", - "sdk-Domain-640", - "sdk-DomainTopic-7775", - "sdk-DomainTopic-9704" + "sdk-EventGrid-RG-1822", + "sdk-Domain-4775", + "sdk-DomainTopic-4178", + "sdk-DomainTopic-187" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDeadLettering.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDeadLettering.json index c33596e8c018..e3aa4adc82e3 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDeadLettering.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDeadLettering.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f43df827-6116-4bd5-b3d6-6314734dc33d" + "6d59fd42-2a51-40d8-a764-39fb198a49a1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:01 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "837c92cb-e0d2-4fe1-8555-5114a80a8f01" + "b0ee4763-39ac-4ad4-bbe0-4cc1f16e1c0c" ], "x-ms-correlation-request-id": [ - "837c92cb-e0d2-4fe1-8555-5114a80a8f01" + "b0ee4763-39ac-4ad4-bbe0-4cc1f16e1c0c" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021102Z:837c92cb-e0d2-4fe1-8555-5114a80a8f01" + "CENTRALUSEUAP:20210219T004930Z:b0ee4763-39ac-4ad4-bbe0-4cc1f16e1c0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "40580" + "Date": [ + "Fri, 19 Feb 2021 00:49:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "43625" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7708\",\r\n \"name\": \"sdk-EventGrid-RG-7708\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1724\",\r\n \"name\": \"RGName-ps1724\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242\",\r\n \"name\": \"RGName-ps1242\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2627\",\r\n \"name\": \"RGName-ps2627\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2205\",\r\n \"name\": \"RGName-ps2205\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3309\",\r\n \"name\": \"RGName-ps3309\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5822\",\r\n \"name\": \"RGName-ps5822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9506\",\r\n \"name\": \"RGName-ps9506\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2751\",\r\n \"name\": \"sdk-EventGrid-RG-2751\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1\",\r\n \"name\": \"testRg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg\",\r\n \"name\": \"mparkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkrg\",\r\n \"name\": \"vkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"name\": \"MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi\",\r\n \"name\": \"msi\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain\",\r\n \"name\": \"msidomain\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishptestvm_group\",\r\n \"name\": \"kishptestvm_group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829\",\r\n \"name\": \"sdk-EventGrid-RG-1829\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738\",\r\n \"name\": \"sdk-EventGrid-RG-738\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RgWithPolicyZRestrictions\",\r\n \"name\": \"RgWithPolicyZRestrictions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/crptestps1147\",\r\n \"name\": \"crptestps1147\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2\",\r\n \"name\": \"PartnerRg2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1\",\r\n \"name\": \"PartnerRg1\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"name\": \"clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:51:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"name\": \"clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:56:49Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"name\": \"clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T10:02:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"name\": \"clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T20:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7867\",\r\n \"name\": \"RGName-ps7867\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1794\",\r\n \"name\": \"RGName-ps1794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4072\",\r\n \"name\": \"RGName-ps4072\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-516?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTE2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-2537?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjUzNz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c466260c-4d49-4422-8530-e35a6b9ecd14" + "bf71014a-be0a-450c-8ab2-f1d0cb353ea7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:08 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "c504c544-7f82-4400-983f-7b648d28cc55" + "d1be1427-c848-4a25-a49f-c30948ba528b" ], "x-ms-correlation-request-id": [ - "c504c544-7f82-4400-983f-7b648d28cc55" + "d1be1427-c848-4a25-a49f-c30948ba528b" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021108Z:c504c544-7f82-4400-983f-7b648d28cc55" + "CENTRALUSEUAP:20210219T004930Z:d1be1427-c848-4a25-a49f-c30948ba528b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:30 GMT" + ], "Content-Length": [ - "200" + "202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516\",\r\n \"name\": \"sdk-EventGrid-RG-516\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537\",\r\n \"name\": \"sdk-EventGrid-RG-2537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtODcyOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY3MjU/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6c743dbe-4ed0-4d61-9ac7-c67365ebd1d4" + "11002375-765a-42b7-af76-8c0ee5cc0588" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:16 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/72A7E5F4-21DA-48FB-9DFD-56EDB3F2762B?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/287AF2AA-4852-4C01-9D2A-7A102E588401?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "7831b98d-233b-4a25-96bc-a1db6a82f805" + "ee6300f8-0f6d-437b-8e47-d8c7678592a4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "8bd0d6fc-cbf7-491f-94e9-d94c93a98268" + "80a1412f-69c8-49e3-b604-23a2926156e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021117Z:8bd0d6fc-cbf7-491f-94e9-d94c93a98268" + "CENTRALUSEUAP:20210219T004932Z:80a1412f-69c8-49e3-b604-23a2926156e1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:32 GMT" + ], "Content-Length": [ - "309" + "310" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,55 +198,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728\",\r\n \"name\": \"sdk-Topic-8728\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725\",\r\n \"name\": \"sdk-Topic-6725\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/72A7E5F4-21DA-48FB-9DFD-56EDB3F2762B?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNzJBN0U1RjQtMjFEQS00OEZCLTlERkQtNTZFREIzRjI3NjJCP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/287AF2AA-4852-4C01-9D2A-7A102E588401?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMjg3QUYyQUEtNDg1Mi00QzAxLTlEMkEtN0ExMDJFNTg4NDAxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:27 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8880c60e-b8da-4e88-9b8d-e3391bae9bc5" + "e4a964f2-b90f-43a5-b834-59f690e91d34" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11985" ], "x-ms-correlation-request-id": [ - "9b80d315-d878-4f7c-8beb-52130234747f" + "ca8be1da-54a9-48d8-b926-0ae593e9e3af" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021128Z:9b80d315-d878-4f7c-8beb-52130234747f" + "CENTRALUSEUAP:20210219T004942Z:ca8be1da-54a9-48d8-b926-0ae593e9e3af" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:42 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,55 +255,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/72A7E5F4-21DA-48FB-9DFD-56EDB3F2762B?api-version=2020-06-01\",\r\n \"name\": \"72a7e5f4-21da-48fb-9dfd-56edb3f2762b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/287AF2AA-4852-4C01-9D2A-7A102E588401?api-version=2020-10-15-preview\",\r\n \"name\": \"287af2aa-4852-4c01-9d2a-7a102e588401\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtODcyOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY3MjU/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:28 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "947ca512-c8c5-4a84-a91a-771d5d4d1b23" + "71433596-26f4-4d94-9d0a-1fa7345ed19c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11984" ], "x-ms-correlation-request-id": [ - "c9a84d2d-0b6e-4b85-a201-41bf349a6b48" + "8051b73f-e837-4baf-a45c-7878c014dab9" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021128Z:c9a84d2d-0b6e-4b85-a201-41bf349a6b48" + "CENTRALUSEUAP:20210219T004942Z:8051b73f-e837-4baf-a45c-7878c014dab9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:42 GMT" + ], "Content-Length": [ - "499" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,61 +312,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8728.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"729d642e-11fe-4617-8c7e-5639bc2a4203\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728\",\r\n \"name\": \"sdk-Topic-8728\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-6725.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"67a2369d-22cc-43a0-ac3b-2545a12c8bdc\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725\",\r\n \"name\": \"sdk-Topic-6725\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtODcyOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY3MjU/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a99cc5f-1f99-485b-9a8e-fcf56b733105" + "e4e1843e-52d7-40b0-82c9-fde3159cc400" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2a81f07d-32b0-49b6-b347-3c9523598782" + "d9685113-6951-4ece-8871-f6fdf448b210" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11983" ], "x-ms-correlation-request-id": [ - "b2f09789-1e50-4fc0-a2fd-f61baeec752f" + "c5f2707f-d3f2-4d89-971d-6d4b4ed48ceb" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021133Z:b2f09789-1e50-4fc0-a2fd-f61baeec752f" + "CENTRALUSEUAP:20210219T004947Z:c5f2707f-d3f2-4d89-971d-6d4b4ed48ceb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:47 GMT" + ], "Content-Length": [ - "499" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,61 +375,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8728.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"729d642e-11fe-4617-8c7e-5639bc2a4203\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728\",\r\n \"name\": \"sdk-Topic-8728\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-6725.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"67a2369d-22cc-43a0-ac3b-2545a12c8bdc\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725\",\r\n \"name\": \"sdk-Topic-6725\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtODcyOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY3MjU/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e76d582-67c2-4c16-a20d-52397d053652" + "f3a1b4c2-c0b6-4963-ae78-b60e329876ca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d71f7c53-b0c5-49be-9f9d-f7a2bd129bc1" + "846cd68b-510b-475e-ac07-d6f69546a069" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11982" ], "x-ms-correlation-request-id": [ - "13a6ab67-6825-4adc-aa2b-64a05077c1e1" + "96d7c5ae-96fd-402b-8a27-3f3870e81de4" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021133Z:13a6ab67-6825-4adc-aa2b-64a05077c1e1" + "CENTRALUSEUAP:20210219T004947Z:96d7c5ae-96fd-402b-8a27-3f3870e81de4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:47 GMT" + ], "Content-Length": [ - "499" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,26 +438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8728.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"729d642e-11fe-4617-8c7e-5639bc2a4203\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728\",\r\n \"name\": \"sdk-Topic-8728\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-6725.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"67a2369d-22cc-43a0-ac3b-2545a12c8bdc\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725\",\r\n \"name\": \"sdk-Topic-6725\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9476?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTg3MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05NDc2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6321?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTI1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNjMyMT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"endpointType\": \"StorageBlob\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e607b15a-36eb-4ead-8fb2-d5922991d5c3" + "5982a690-893c-419b-b893-9dff486baa75" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -470,41 +470,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:34 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/D2553A96-E789-4D4C-B000-CBD49F66CBCA?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/0415F5EE-5988-42F5-825D-5939ED4F47E7?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "79babcc9-a784-4820-ae7c-ce5a487fe9f0" + "95b433a4-2e6b-4596-9aa5-b1ea9842ca84" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "899" + "898" ], "x-ms-correlation-request-id": [ - "1bdd78c6-11ac-4354-b943-12a1aab4187a" + "9652c517-f4f0-43be-abce-273b6bea94aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021134Z:1bdd78c6-11ac-4354-b943-12a1aab4187a" + "CENTRALUSEUAP:20210219T004948Z:9652c517-f4f0-43be-abce-273b6bea94aa" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:48 GMT" + ], "Content-Length": [ - "1131" + "1151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,55 +513,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-516/providers/microsoft.eventgrid/topics/sdk-topic-8728\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9476\",\r\n \"name\": \"sdk-EventSubscription-9476\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-2537/providers/microsoft.eventgrid/topics/sdk-topic-6725\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6321\",\r\n \"name\": \"sdk-EventSubscription-6321\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/D2553A96-E789-4D4C-B000-CBD49F66CBCA?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRDI1NTNBOTYtRTc4OS00RDRDLUIwMDAtQ0JENDlGNjZDQkNBP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/0415F5EE-5988-42F5-825D-5939ED4F47E7?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMDQxNUY1RUUtNTk4OC00MkY1LTgyNUQtNTkzOUVENEY0N0U3P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "faa32a2c-9eb9-46c5-a022-74d31907b2c2" + "4a85dbf5-9b5a-4d7c-b250-0262cf0027dc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11981" ], "x-ms-correlation-request-id": [ - "1d3c155f-d839-4625-82fc-8f6982037984" + "8175ab85-7cce-4b4b-b06d-fee9eade67ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021144Z:1d3c155f-d839-4625-82fc-8f6982037984" + "CENTRALUSEUAP:20210219T004958Z:8175ab85-7cce-4b4b-b06d-fee9eade67ea" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:58 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,55 +570,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/D2553A96-E789-4D4C-B000-CBD49F66CBCA?api-version=2020-06-01\",\r\n \"name\": \"d2553a96-e789-4d4c-b000-cbd49f66cbca\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/0415F5EE-5988-42F5-825D-5939ED4F47E7?api-version=2020-10-15-preview\",\r\n \"name\": \"0415f5ee-5988-42f5-825d-5939ed4f47e7\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9476?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTg3MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05NDc2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6321?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTI1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNjMyMT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "930cc45e-004b-41f3-85d0-7354b0c3d93c" + "de55e3ca-7431-4fb5-8738-dd04cde03094" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11980" ], "x-ms-correlation-request-id": [ - "f62882af-6a80-4339-a95d-46ad648a4d72" + "3c2e9f67-1898-476c-9c01-a8fb41e0ab07" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021144Z:f62882af-6a80-4339-a95d-46ad648a4d72" + "CENTRALUSEUAP:20210219T004959Z:3c2e9f67-1898-476c-9c01-a8fb41e0ab07" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:58 GMT" + ], "Content-Length": [ - "1229" + "1249" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,61 +627,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-516/providers/microsoft.eventgrid/topics/sdk-topic-8728\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9476\",\r\n \"name\": \"sdk-EventSubscription-9476\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-2537/providers/microsoft.eventgrid/topics/sdk-topic-6725\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6321\",\r\n \"name\": \"sdk-EventSubscription-6321\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9476?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTg3MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05NDc2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6321?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTI1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNjMyMT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c741b553-a75d-44c0-92e2-96dbcd85a411" + "0c0e862b-84fe-46b6-ad97-cc15f8346318" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "58250d4e-e161-497d-8c77-2468d91b11cd" + "8df71590-4817-4dae-ab62-11dfa4b6e1ad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11979" ], "x-ms-correlation-request-id": [ - "dab63f5d-8e35-4e5e-bc0a-fea1aa41e37e" + "5fa28bd3-6f5d-4a8d-8849-865c6225854d" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021149Z:dab63f5d-8e35-4e5e-bc0a-fea1aa41e37e" + "CENTRALUSEUAP:20210219T005004Z:5fa28bd3-6f5d-4a8d-8849-865c6225854d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:04 GMT" + ], "Content-Length": [ - "1229" + "1249" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,61 +690,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-516/providers/microsoft.eventgrid/topics/sdk-topic-8728\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9476\",\r\n \"name\": \"sdk-EventSubscription-9476\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-2537/providers/microsoft.eventgrid/topics/sdk-topic-6725\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6321\",\r\n \"name\": \"sdk-EventSubscription-6321\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9476?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTg3MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05NDc2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6321?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTI1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNjMyMT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e698d357-68d4-437a-99b8-a9520674a9be" + "2ca564a2-1df6-4351-bef2-ec62e8443b2d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "09c513dc-f58d-4a5d-9fba-cbde14760105" + "acb426f2-8d69-4d2c-b69e-08eba9486558" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11978" ], "x-ms-correlation-request-id": [ - "d236b475-8609-4a3f-a0f2-77ba496c6376" + "85ce43d2-6dec-4d45-b3a2-e1372241a61b" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021149Z:d236b475-8609-4a3f-a0f2-77ba496c6376" + "CENTRALUSEUAP:20210219T005004Z:85ce43d2-6dec-4d45-b3a2-e1372241a61b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:04 GMT" + ], "Content-Length": [ - "1229" + "1249" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,124 +753,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-516/providers/microsoft.eventgrid/topics/sdk-topic-8728\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9476\",\r\n \"name\": \"sdk-EventSubscription-9476\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-2537/providers/microsoft.eventgrid/topics/sdk-topic-6725\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6321\",\r\n \"name\": \"sdk-EventSubscription-6321\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9476?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTg3MjgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05NDc2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6321?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTI1MzcvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NzI1L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNjMyMT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7870e61a-912e-49f3-bb4d-8ee70fc3f583" + "3b2c0b65-b6f5-4026-81bc-eb089ce587ff" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:49 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/BDAA3DF8-1DB4-4062-B08D-807664227531?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/98E39280-1ECF-47B3-B3A2-AA243091164C?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/BDAA3DF8-1DB4-4062-B08D-807664227531?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/98E39280-1ECF-47B3-B3A2-AA243091164C?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14995" ], "x-ms-request-id": [ - "0a2fc38e-a87e-4558-af17-916dc9881137" + "2e8c1f29-4503-45fd-a6d7-7d128d8efc10" ], "x-ms-correlation-request-id": [ - "0a2fc38e-a87e-4558-af17-916dc9881137" + "2e8c1f29-4503-45fd-a6d7-7d128d8efc10" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021149Z:0a2fc38e-a87e-4558-af17-916dc9881137" + "CENTRALUSEUAP:20210219T005005Z:2e8c1f29-4503-45fd-a6d7-7d128d8efc10" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:50:04 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/BDAA3DF8-1DB4-4062-B08D-807664227531?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQkRBQTNERjgtMURCNC00MDYyLUIwOEQtODA3NjY0MjI3NTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/98E39280-1ECF-47B3-B3A2-AA243091164C?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvOThFMzkyODAtMUVDRi00N0IzLUIzQTItQUEyNDMwOTExNjRDP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd9f0f01-2d9e-4e1e-a8d8-c80b184cdf50" + "f01d77ee-1298-4ae3-84ff-5ddddc1970bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11977" ], "x-ms-correlation-request-id": [ - "417531e0-35c2-4b5c-8b5e-2c332f033785" + "3ff7e35a-bf1e-4430-b304-f27426499d9b" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021200Z:417531e0-35c2-4b5c-8b5e-2c332f033785" + "CENTRALUSEUAP:20210219T005015Z:3ff7e35a-bf1e-4430-b304-f27426499d9b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:15 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -879,178 +879,178 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/BDAA3DF8-1DB4-4062-B08D-807664227531?api-version=2020-06-01\",\r\n \"name\": \"bdaa3df8-1db4-4062-b08d-807664227531\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/98E39280-1ECF-47B3-B3A2-AA243091164C?api-version=2020-10-15-preview\",\r\n \"name\": \"98e39280-1ecf-47b3-b3a2-aa243091164c\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/BDAA3DF8-1DB4-4062-B08D-807664227531?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvQkRBQTNERjgtMURCNC00MDYyLUIwOEQtODA3NjY0MjI3NTMxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/98E39280-1ECF-47B3-B3A2-AA243091164C?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvOThFMzkyODAtMUVDRi00N0IzLUIzQTItQUEyNDMwOTExNjRDP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e8ad19d4-51a3-4ede-9b37-ac085b728697" + "d9b87005-8c15-4c80-a976-283b416383ba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11976" ], "x-ms-correlation-request-id": [ - "e161e322-4b39-4702-9188-6b7dedac2eb5" + "695a35b2-4a5b-4f1e-a303-88c02bc9458f" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021200Z:e161e322-4b39-4702-9188-6b7dedac2eb5" + "CENTRALUSEUAP:20210219T005015Z:695a35b2-4a5b-4f1e-a303-88c02bc9458f" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:50:15 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516/providers/Microsoft.EventGrid/topics/sdk-Topic-8728?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTE2L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtODcyOD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2537/providers/Microsoft.EventGrid/topics/sdk-Topic-6725?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjUzNy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY3MjU/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bad7c2aa-279a-4fa4-997d-e2a0ec240daf" + "14af50a0-f6c1-4fe1-afe0-a569d6b90434" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/E625155F-1858-43F4-A9FC-B830318896DA?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/D33B9A86-DED9-4D61-8D4E-13DF610FFA73?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/E625155F-1858-43F4-A9FC-B830318896DA?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/D33B9A86-DED9-4D61-8D4E-13DF610FFA73?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14994" ], "x-ms-request-id": [ - "94ee2506-9fff-4567-b5aa-c711199f01b4" + "a4159db2-eca9-410f-a038-24d60918eca0" ], "x-ms-correlation-request-id": [ - "94ee2506-9fff-4567-b5aa-c711199f01b4" + "a4159db2-eca9-410f-a038-24d60918eca0" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021200Z:94ee2506-9fff-4567-b5aa-c711199f01b4" + "CENTRALUSEUAP:20210219T005015Z:a4159db2-eca9-410f-a038-24d60918eca0" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:50:15 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/E625155F-1858-43F4-A9FC-B830318896DA?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRTYyNTE1NUYtMTg1OC00M0Y0LUE5RkMtQjgzMDMxODg5NkRBP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/D33B9A86-DED9-4D61-8D4E-13DF610FFA73?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRDMzQjlBODYtREVEOS00RDYxLThENEUtMTNERjYxMEZGQTczP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "07fdfa8a-8d88-4b3a-b440-1ec28c37a43c" + "3aacd2ca-f376-4708-9575-8b82e8a498df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11975" ], "x-ms-correlation-request-id": [ - "4a4d2558-e994-4ede-aa0e-c2b43f233089" + "658fc4d9-023c-4f45-bdfe-dc355496ca56" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021210Z:4a4d2558-e994-4ede-aa0e-c2b43f233089" + "CENTRALUSEUAP:20210219T005025Z:658fc4d9-023c-4f45-bdfe-dc355496ca56" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:50:25 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1059,58 +1059,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/E625155F-1858-43F4-A9FC-B830318896DA?api-version=2020-06-01\",\r\n \"name\": \"e625155f-1858-43f4-a9fc-b830318896da\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/D33B9A86-DED9-4D61-8D4E-13DF610FFA73?api-version=2020-10-15-preview\",\r\n \"name\": \"d33b9a86-ded9-4d61-8d4e-13df610ffa73\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/E625155F-1858-43F4-A9FC-B830318896DA?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvRTYyNTE1NUYtMTg1OC00M0Y0LUE5RkMtQjgzMDMxODg5NkRBP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/D33B9A86-DED9-4D61-8D4E-13DF610FFA73?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvRDMzQjlBODYtREVEOS00RDYxLThENEUtMTNERjYxMEZGQTczP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1d42353c-56e2-4192-90e8-f26452bfa48c" + "77060a8a-d3dd-4e0c-b80a-7bb728058a91" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11974" ], "x-ms-correlation-request-id": [ - "c2cab8a3-1697-4ee3-ad26-718bb402bf12" + "f3a5c4c9-99c1-4866-95d2-c8e5c3c0f8fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021210Z:c2cab8a3-1697-4ee3-ad26-718bb402bf12" + "CENTRALUSEUAP:20210219T005025Z:f3a5c4c9-99c1-4866-95d2-c8e5c3c0f8fb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:50:25 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1119,9 +1119,9 @@ ], "Names": { "EventSubscriptionCreateGetUpdateDeleteWithDeadLettering": [ - "sdk-EventGrid-RG-516", - "sdk-Topic-8728", - "sdk-EventSubscription-9476" + "sdk-EventGrid-RG-2537", + "sdk-Topic-6725", + "sdk-EventSubscription-6321" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterAzureFunctionAsDestination.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterAzureFunctionAsDestination.json index 817e93587c56..1783842da79a 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterAzureFunctionAsDestination.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterAzureFunctionAsDestination.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b32a3d0-5606-40b4-a03e-6f472cb863df" + "7e45d491-cc5f-4aaf-a63a-e5b4a955569c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,9 +23,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:04 GMT" - ], "Pragma": [ "no-cache" ], @@ -33,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "835bd3a5-0ebb-4d03-be86-5c872f1e2523" + "df89f05a-d26b-41d0-81d0-ce87f748ab7b" ], "x-ms-correlation-request-id": [ - "835bd3a5-0ebb-4d03-be86-5c872f1e2523" + "df89f05a-d26b-41d0-81d0-ce87f748ab7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015005Z:835bd3a5-0ebb-4d03-be86-5c872f1e2523" + "CENTRALUSEUAP:20210219T004707Z:df89f05a-d26b-41d0-81d0-ce87f748ab7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "40782" + "Date": [ + "Fri, 19 Feb 2021 00:47:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "43627" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7708\",\r\n \"name\": \"sdk-EventGrid-RG-7708\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440\",\r\n \"name\": \"sdk-EventGrid-RG-1440\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1724\",\r\n \"name\": \"RGName-ps1724\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242\",\r\n \"name\": \"RGName-ps1242\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2627\",\r\n \"name\": \"RGName-ps2627\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2205\",\r\n \"name\": \"RGName-ps2205\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3309\",\r\n \"name\": \"RGName-ps3309\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5822\",\r\n \"name\": \"RGName-ps5822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9506\",\r\n \"name\": \"RGName-ps9506\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2751\",\r\n \"name\": \"sdk-EventGrid-RG-2751\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1\",\r\n \"name\": \"testRg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg\",\r\n \"name\": \"mparkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkrg\",\r\n \"name\": \"vkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"name\": \"MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi\",\r\n \"name\": \"msi\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain\",\r\n \"name\": \"msidomain\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishptestvm_group\",\r\n \"name\": \"kishptestvm_group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829\",\r\n \"name\": \"sdk-EventGrid-RG-1829\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113\",\r\n \"name\": \"sdk-EventGrid-RG-8113\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RgWithPolicyZRestrictions\",\r\n \"name\": \"RgWithPolicyZRestrictions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/crptestps1147\",\r\n \"name\": \"crptestps1147\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2\",\r\n \"name\": \"PartnerRg2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1\",\r\n \"name\": \"PartnerRg1\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"name\": \"clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:51:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"name\": \"clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:56:49Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"name\": \"clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T10:02:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"name\": \"clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T20:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7867\",\r\n \"name\": \"RGName-ps7867\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1794\",\r\n \"name\": \"RGName-ps1794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4072\",\r\n \"name\": \"RGName-ps4072\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-1905?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTkwNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-2190?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjE5MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f90fb4f7-9ca9-4198-ad17-29d8cb7adb5b" + "31651c10-9d2a-4a15-80ff-e9802e7d61a7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:05 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "0a121262-2c01-4fd7-ad39-212ec7a128fb" + "664558de-3221-4718-82b7-838b3826388a" ], "x-ms-correlation-request-id": [ - "0a121262-2c01-4fd7-ad39-212ec7a128fb" + "664558de-3221-4718-82b7-838b3826388a" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015006Z:0a121262-2c01-4fd7-ad39-212ec7a128fb" + "CENTRALUSEUAP:20210219T004708Z:664558de-3221-4718-82b7-838b3826388a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:07 GMT" + ], "Content-Length": [ "202" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905\",\r\n \"name\": \"sdk-EventGrid-RG-1905\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190\",\r\n \"name\": \"sdk-EventGrid-RG-2190\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NDM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjE5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTU1Mzc/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b3cf5913-f078-4b30-8026-dc11a83972fd" + "ec200e12-b31b-435a-92c5-a6254f995f8b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:08 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B4E6B282-5D6E-438C-B016-CA4180EE9258?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/EFFCD4C9-05F6-436F-92B2-AD31F4D76309?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "9f5486cc-11ff-48d1-858e-2cb7af66dbdd" + "0bc8ac8d-1d2b-474c-b3b5-778e20a702b4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "c032b611-437b-44f4-b160-4a61b845c8c0" + "ca27e748-9764-48c3-8f7e-ad412a20cea9" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015008Z:c032b611-437b-44f4-b160-4a61b845c8c0" + "CENTRALUSEUAP:20210219T004709Z:ca27e748-9764-48c3-8f7e-ad412a20cea9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:09 GMT" + ], "Content-Length": [ "310" ], @@ -198,55 +198,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543\",\r\n \"name\": \"sdk-Topic-4543\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537\",\r\n \"name\": \"sdk-Topic-5537\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B4E6B282-5D6E-438C-B016-CA4180EE9258?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQjRFNkIyODItNUQ2RS00MzhDLUIwMTYtQ0E0MTgwRUU5MjU4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/EFFCD4C9-05F6-436F-92B2-AD31F4D76309?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRUZGQ0Q0QzktMDVGNi00MzZGLTkyQjItQUQzMUY0RDc2MzA5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "efcf10ee-6857-404a-8897-418ccbd62aaa" + "1d5f0ade-5a21-4fd7-a334-b7548cb11f12" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "e4853163-85d6-4817-9c55-dd6f2b320b3e" + "59618b30-8ffc-41ad-bbae-4cef10ec53e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015018Z:e4853163-85d6-4817-9c55-dd6f2b320b3e" + "CENTRALUSEUAP:20210219T004720Z:59618b30-8ffc-41ad-bbae-4cef10ec53e5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:20 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,55 +255,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B4E6B282-5D6E-438C-B016-CA4180EE9258?api-version=2020-06-01\",\r\n \"name\": \"b4e6b282-5d6e-438c-b016-ca4180ee9258\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/EFFCD4C9-05F6-436F-92B2-AD31F4D76309?api-version=2020-10-15-preview\",\r\n \"name\": \"effcd4c9-05f6-436f-92b2-ad31f4d76309\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NDM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjE5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTU1Mzc/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:18 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cc4dae86-647e-43f1-8c20-35dbf38b365e" + "ca9d0818-cc27-49cf-95e6-63edb293b90c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "0f367d59-8cc5-4180-97d1-8abb9b13f79c" + "d1045e56-a792-4c81-8d5d-a16cf037fc97" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015018Z:0f367d59-8cc5-4180-97d1-8abb9b13f79c" + "CENTRALUSEUAP:20210219T004720Z:d1045e56-a792-4c81-8d5d-a16cf037fc97" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:20 GMT" + ], "Content-Length": [ - "500" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,61 +312,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4543.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"70297c10-9781-4a2e-88d2-f6bc03e3ed6d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543\",\r\n \"name\": \"sdk-Topic-4543\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-5537.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2e25f714-792f-4a67-b498-2a2b61de3b8d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537\",\r\n \"name\": \"sdk-Topic-5537\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NDM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjE5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTU1Mzc/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98a35bb4-4e3b-4382-8b03-1896ba896726" + "d83dd27c-0d0e-45a6-95a9-354bfa27ec77" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fee43c58-50fc-478d-8eb3-dad66f882d1b" + "733b6cd3-6697-472d-81eb-86688c29db87" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "4e0e0c12-83e3-495a-a782-6f5b6de8fdd9" + "79f8ce50-9dbe-443e-8e6c-5938a390ba8c" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015024Z:4e0e0c12-83e3-495a-a782-6f5b6de8fdd9" + "CENTRALUSEUAP:20210219T004725Z:79f8ce50-9dbe-443e-8e6c-5938a390ba8c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:25 GMT" + ], "Content-Length": [ - "500" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,61 +375,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4543.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"70297c10-9781-4a2e-88d2-f6bc03e3ed6d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543\",\r\n \"name\": \"sdk-Topic-4543\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-5537.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2e25f714-792f-4a67-b498-2a2b61de3b8d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537\",\r\n \"name\": \"sdk-Topic-5537\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NDM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjE5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTU1Mzc/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b05c363-8653-4cb5-8fc4-ea9fea510109" + "8ec469e1-ab22-48c2-99f8-7cf5b5feb695" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:23 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c21b8584-d351-44c7-b588-92b8ec011cce" + "be35ec60-e0cf-4a80-91ae-785809b9bd0d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "4e839bcb-8168-4eb3-85cf-af306656114e" + "8e75cc35-4f98-47b9-9489-bd8549fb6224" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015024Z:4e839bcb-8168-4eb3-85cf-af306656114e" + "CENTRALUSEUAP:20210219T004725Z:8e75cc35-4f98-47b9-9489-bd8549fb6224" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:25 GMT" + ], "Content-Length": [ - "500" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,26 +438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4543.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"70297c10-9781-4a2e-88d2-f6bc03e3ed6d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543\",\r\n \"name\": \"sdk-Topic-4543\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-5537.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2e25f714-792f-4a67-b498-2a2b61de3b8d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537\",\r\n \"name\": \"sdk-Topic-5537\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2335?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTE5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjMzNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9108?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTIxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy01NTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTEwOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"AzureFunction\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Web/sites/devexpfuncappdestination/functions/EventGridTrigger1\",\r\n \"maxEventsPerBatch\": 10,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"operatorType\": \"StringContains\",\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"operatorType\": \"NumberIn\",\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"operatorType\": \"BoolEquals\",\r\n \"value\": true,\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"operatorType\": \"StringContains\",\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"endpointType\": \"StorageBlob\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "02695edb-6b79-4145-8e2a-8ae4f0a7f5b2" + "c6d6e1c2-05da-4df4-affb-354928f97a8e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -470,41 +470,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:24 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/18ABDE54-C32E-4EDE-A4A5-94CB4D204920?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/23799A1D-DFDC-4A8B-BBA1-D8A99A9EFB22?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "de3dd63f-c424-48cc-a267-1e3ed846f859" + "65d65a49-0524-4b45-b1e8-04998889bd0d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "899" ], "x-ms-correlation-request-id": [ - "46a15594-e5a8-444c-9649-758d11625653" + "e9c78a46-3c9f-4e15-bd5f-4e8a314a704b" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015024Z:46a15594-e5a8-444c-9649-758d11625653" + "CENTRALUSEUAP:20210219T004726Z:e9c78a46-3c9f-4e15-bd5f-4e8a314a704b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:26 GMT" + ], "Content-Length": [ - "1542" + "1560" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,55 +513,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1905/providers/microsoft.eventgrid/topics/sdk-topic-4543\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Web/sites/devexpfuncappdestination/functions/EventGridTrigger1\",\r\n \"maxEventsPerBatch\": 10,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"AzureFunction\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2335\",\r\n \"name\": \"sdk-EventSubscription-2335\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-2190/providers/microsoft.eventgrid/topics/sdk-topic-5537\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Web/sites/devexpfuncappdestination/functions/EventGridTrigger1\",\r\n \"maxEventsPerBatch\": 10,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"AzureFunction\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9108\",\r\n \"name\": \"sdk-EventSubscription-9108\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/18ABDE54-C32E-4EDE-A4A5-94CB4D204920?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMThBQkRFNTQtQzMyRS00RURFLUE0QTUtOTRDQjREMjA0OTIwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/23799A1D-DFDC-4A8B-BBA1-D8A99A9EFB22?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMjM3OTlBMUQtREZEQy00QThCLUJCQTEtRDhBOTlBOUVGQjIyP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fd736b2f-4d59-490e-a8bc-a981753c86a3" + "8af4b013-d144-4c10-9c11-1d4529242099" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "3b8ee1d0-4426-4c76-a371-140e8661e487" + "41262258-8f73-425b-aabe-d19490a906ff" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015034Z:3b8ee1d0-4426-4c76-a371-140e8661e487" + "CENTRALUSEUAP:20210219T004737Z:41262258-8f73-425b-aabe-d19490a906ff" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:36 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,55 +570,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/18ABDE54-C32E-4EDE-A4A5-94CB4D204920?api-version=2020-06-01\",\r\n \"name\": \"18abde54-c32e-4ede-a4a5-94cb4d204920\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/23799A1D-DFDC-4A8B-BBA1-D8A99A9EFB22?api-version=2020-10-15-preview\",\r\n \"name\": \"23799a1d-dfdc-4a8b-bba1-d8a99a9efb22\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2335?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTE5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjMzNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9108?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTIxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy01NTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTEwOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f69e7c0-24ec-4e70-81ec-39d8a0cb5ea4" + "917a6e64-674f-45c5-8dc8-49fdc3d02544" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "112229a2-6024-4d22-8a3a-eff5897f90b8" + "4e1f77c4-a5ed-4945-a510-24de54364c98" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015035Z:112229a2-6024-4d22-8a3a-eff5897f90b8" + "CENTRALUSEUAP:20210219T004737Z:4e1f77c4-a5ed-4945-a510-24de54364c98" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:36 GMT" + ], "Content-Length": [ - "1583" + "1601" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,61 +627,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1905/providers/microsoft.eventgrid/topics/sdk-topic-4543\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Web/sites/devexpfuncappdestination/functions/EventGridTrigger1\",\r\n \"maxEventsPerBatch\": 10,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"AzureFunction\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2335\",\r\n \"name\": \"sdk-EventSubscription-2335\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-2190/providers/microsoft.eventgrid/topics/sdk-topic-5537\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Web/sites/devexpfuncappdestination/functions/EventGridTrigger1\",\r\n \"maxEventsPerBatch\": 10,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"AzureFunction\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9108\",\r\n \"name\": \"sdk-EventSubscription-9108\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2335?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTE5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjMzNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9108?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTIxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy01NTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTEwOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38e95097-11df-46c5-8e02-4305d923b804" + "db475c67-441d-4e26-be47-5818add88931" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "030c4861-a297-433d-8c2d-9bf2836143f6" + "22f2f2a7-2a87-4aae-b7d5-cd18f38d6f06" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "280c2e46-dae7-41fe-8338-6815ccf1ddec" + "b9ad709b-2979-4717-bc6a-6e11d1ce1a00" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015040Z:280c2e46-dae7-41fe-8338-6815ccf1ddec" + "CENTRALUSEUAP:20210219T004742Z:b9ad709b-2979-4717-bc6a-6e11d1ce1a00" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:42 GMT" + ], "Content-Length": [ - "1583" + "1601" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,61 +690,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1905/providers/microsoft.eventgrid/topics/sdk-topic-4543\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Web/sites/devexpfuncappdestination/functions/EventGridTrigger1\",\r\n \"maxEventsPerBatch\": 10,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"AzureFunction\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2335\",\r\n \"name\": \"sdk-EventSubscription-2335\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-2190/providers/microsoft.eventgrid/topics/sdk-topic-5537\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Web/sites/devexpfuncappdestination/functions/EventGridTrigger1\",\r\n \"maxEventsPerBatch\": 10,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"AzureFunction\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9108\",\r\n \"name\": \"sdk-EventSubscription-9108\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2335?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTE5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjMzNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9108?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTIxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy01NTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTEwOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c221ec15-6816-42c2-a104-0ca6ea4c01f0" + "6ffb75d3-ba24-462e-9c5a-dd1fe99dc8d7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "96296fce-5397-4e69-bca8-b2e7de7ce07d" + "83fa4b30-0cf5-4581-b5c9-92af2b891919" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "63cf92a3-ae27-4053-b3de-700d872a9224" + "78e1b13c-463d-4a2f-ac3d-45048e35d91f" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015040Z:63cf92a3-ae27-4053-b3de-700d872a9224" + "CENTRALUSEUAP:20210219T004742Z:78e1b13c-463d-4a2f-ac3d-45048e35d91f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:42 GMT" + ], "Content-Length": [ - "1583" + "1601" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,124 +753,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1905/providers/microsoft.eventgrid/topics/sdk-topic-4543\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Web/sites/devexpfuncappdestination/functions/EventGridTrigger1\",\r\n \"maxEventsPerBatch\": 10,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"AzureFunction\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2335\",\r\n \"name\": \"sdk-EventSubscription-2335\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-2190/providers/microsoft.eventgrid/topics/sdk-topic-5537\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Web/sites/devexpfuncappdestination/functions/EventGridTrigger1\",\r\n \"maxEventsPerBatch\": 10,\r\n \"preferredBatchSizeInKilobytes\": 1000\r\n },\r\n \"endpointType\": \"AzureFunction\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9108\",\r\n \"name\": \"sdk-EventSubscription-9108\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2335?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTE5MDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjMzNT9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9108?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTIxOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy01NTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTEwOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc03e46f-5d3d-4039-bf4f-658b654f3738" + "c6629b17-d786-4daa-b3d8-c8ab7b744da9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:40 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/8361D3DC-6A38-48D7-9609-C36DB1EE4AED?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/AA3D2098-E2BC-4C15-B7BF-FF78D620B06D?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/8361D3DC-6A38-48D7-9609-C36DB1EE4AED?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/AA3D2098-E2BC-4C15-B7BF-FF78D620B06D?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "35aecfd1-9e53-4a6c-8276-2ff3dab28c4f" + "eaa87617-f8c5-4583-8aaf-1183145e9210" ], "x-ms-correlation-request-id": [ - "35aecfd1-9e53-4a6c-8276-2ff3dab28c4f" + "eaa87617-f8c5-4583-8aaf-1183145e9210" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015040Z:35aecfd1-9e53-4a6c-8276-2ff3dab28c4f" + "CENTRALUSEUAP:20210219T004743Z:eaa87617-f8c5-4583-8aaf-1183145e9210" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:47:43 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/8361D3DC-6A38-48D7-9609-C36DB1EE4AED?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvODM2MUQzREMtNkEzOC00OEQ3LTk2MDktQzM2REIxRUU0QUVEP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/AA3D2098-E2BC-4C15-B7BF-FF78D620B06D?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQUEzRDIwOTgtRTJCQy00QzE1LUI3QkYtRkY3OEQ2MjBCMDZEP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d5c9422-0eee-480c-96db-7a59922dc613" + "8df7ae71-fee8-43f3-ba80-08b94165059d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "5782024b-5f3c-4205-9ece-3c1167b7eaf9" + "7f81f4ba-d4ea-4894-96b6-d676bb4e4326" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015050Z:5782024b-5f3c-4205-9ece-3c1167b7eaf9" + "CENTRALUSEUAP:20210219T004753Z:7f81f4ba-d4ea-4894-96b6-d676bb4e4326" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:52 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -879,178 +879,178 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/8361D3DC-6A38-48D7-9609-C36DB1EE4AED?api-version=2020-06-01\",\r\n \"name\": \"8361d3dc-6a38-48d7-9609-c36db1ee4aed\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/AA3D2098-E2BC-4C15-B7BF-FF78D620B06D?api-version=2020-10-15-preview\",\r\n \"name\": \"aa3d2098-e2bc-4c15-b7bf-ff78d620b06d\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/8361D3DC-6A38-48D7-9609-C36DB1EE4AED?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvODM2MUQzREMtNkEzOC00OEQ3LTk2MDktQzM2REIxRUU0QUVEP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/AA3D2098-E2BC-4C15-B7BF-FF78D620B06D?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvQUEzRDIwOTgtRTJCQy00QzE1LUI3QkYtRkY3OEQ2MjBCMDZEP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74209884-6052-4d15-a610-c0186473ea6d" + "14c4dbe7-f69d-4034-8d7d-c65ef6b79d1c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "59d74f41-2ba5-4431-b30d-07bb51af5add" + "a146feee-b5f4-40cc-b4df-f438b8bd692e" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015050Z:59d74f41-2ba5-4431-b30d-07bb51af5add" + "CENTRALUSEUAP:20210219T004753Z:a146feee-b5f4-40cc-b4df-f438b8bd692e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:47:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1905/providers/Microsoft.EventGrid/topics/sdk-Topic-4543?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTkwNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NDM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190/providers/Microsoft.EventGrid/topics/sdk-Topic-5537?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMjE5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTU1Mzc/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7bac30b7-15a4-40e7-8db3-4d239ce36ae4" + "87bf1ab6-3604-464f-b2d9-d4614187fde8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:50:50 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/9E5AC1DA-993B-4A25-ACEF-42DD2B4D209E?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/2A09DE45-E6D6-4F16-AD7B-B0DBD71142F8?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/9E5AC1DA-993B-4A25-ACEF-42DD2B4D209E?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/2A09DE45-E6D6-4F16-AD7B-B0DBD71142F8?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-request-id": [ - "3f3a627b-3ee2-469c-ad28-565631d2b882" + "5d9bc738-b267-470d-b78d-0a6e32760356" ], "x-ms-correlation-request-id": [ - "3f3a627b-3ee2-469c-ad28-565631d2b882" + "5d9bc738-b267-470d-b78d-0a6e32760356" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015051Z:3f3a627b-3ee2-469c-ad28-565631d2b882" + "CENTRALUSEUAP:20210219T004753Z:5d9bc738-b267-470d-b78d-0a6e32760356" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:47:53 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/9E5AC1DA-993B-4A25-ACEF-42DD2B4D209E?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvOUU1QUMxREEtOTkzQi00QTI1LUFDRUYtNDJERDJCNEQyMDlFP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/2A09DE45-E6D6-4F16-AD7B-B0DBD71142F8?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMkEwOURFNDUtRTZENi00RjE2LUFEN0ItQjBEQkQ3MTE0MkY4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:51:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3206a8c6-b4ea-41b7-ae03-ac6250baf04b" + "431cced0-85c0-4f96-8818-adb16ef46363" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "9943c2a1-bef4-4648-a57f-c690acbe1170" + "9399882f-451b-4f03-a523-635734447e28" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015101Z:9943c2a1-bef4-4648-a57f-c690acbe1170" + "CENTRALUSEUAP:20210219T004804Z:9399882f-451b-4f03-a523-635734447e28" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:03 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1059,58 +1059,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/9E5AC1DA-993B-4A25-ACEF-42DD2B4D209E?api-version=2020-06-01\",\r\n \"name\": \"9e5ac1da-993b-4a25-acef-42dd2b4d209e\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/2A09DE45-E6D6-4F16-AD7B-B0DBD71142F8?api-version=2020-10-15-preview\",\r\n \"name\": \"2a09de45-e6d6-4f16-ad7b-b0dbd71142f8\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/9E5AC1DA-993B-4A25-ACEF-42DD2B4D209E?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvOUU1QUMxREEtOTkzQi00QTI1LUFDRUYtNDJERDJCNEQyMDlFP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/2A09DE45-E6D6-4F16-AD7B-B0DBD71142F8?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvMkEwOURFNDUtRTZENi00RjE2LUFEN0ItQjBEQkQ3MTE0MkY4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:51:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "204c3291-175a-4f84-98aa-946c603c436f" + "32979937-90df-4d3b-9e23-6a8a5a9ce4d3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "66c6d73d-283e-4cd9-9ab4-a765f7f32fa6" + "0fc79965-fb89-4611-a371-acef32666184" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015101Z:66c6d73d-283e-4cd9-9ab4-a765f7f32fa6" + "CENTRALUSEUAP:20210219T004804Z:0fc79965-fb89-4611-a371-acef32666184" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:48:03 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1119,9 +1119,9 @@ ], "Names": { "EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterAzureFunctionAsDestination": [ - "sdk-EventGrid-RG-1905", - "sdk-Topic-4543", - "sdk-EventSubscription-2335" + "sdk-EventGrid-RG-2190", + "sdk-Topic-5537", + "sdk-EventSubscription-9108" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterServiceBusAsDestination.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterServiceBusAsDestination.json index d7c24ac382ec..f45e05365f2f 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterServiceBusAsDestination.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterServiceBusAsDestination.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd6378c5-a94e-4dae-952c-f7c93933723b" + "3adadff6-7cd0-4492-bc7f-311fe50fd8f4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:19 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11997" ], "x-ms-request-id": [ - "f026f8a0-837a-436f-8043-3133ccbdd5f8" + "e09e22e3-bed4-47fb-8d39-3732347a431a" ], "x-ms-correlation-request-id": [ - "f026f8a0-837a-436f-8043-3133ccbdd5f8" + "e09e22e3-bed4-47fb-8d39-3732347a431a" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015420Z:f026f8a0-837a-436f-8043-3133ccbdd5f8" + "CENTRALUSEUAP:20210219T005335Z:e09e22e3-bed4-47fb-8d39-3732347a431a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "40984" + "Date": [ + "Fri, 19 Feb 2021 00:53:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "43625" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7708\",\r\n \"name\": \"sdk-EventGrid-RG-7708\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4326\",\r\n \"name\": \"sdk-EventGrid-RG-4326\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8649\",\r\n \"name\": \"sdk-EventGrid-RG-8649\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1724\",\r\n \"name\": \"RGName-ps1724\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242\",\r\n \"name\": \"RGName-ps1242\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2627\",\r\n \"name\": \"RGName-ps2627\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2205\",\r\n \"name\": \"RGName-ps2205\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3309\",\r\n \"name\": \"RGName-ps3309\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5822\",\r\n \"name\": \"RGName-ps5822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9506\",\r\n \"name\": \"RGName-ps9506\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2751\",\r\n \"name\": \"sdk-EventGrid-RG-2751\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1\",\r\n \"name\": \"testRg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg\",\r\n \"name\": \"mparkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkrg\",\r\n \"name\": \"vkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"name\": \"MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi\",\r\n \"name\": \"msi\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain\",\r\n \"name\": \"msidomain\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishptestvm_group\",\r\n \"name\": \"kishptestvm_group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829\",\r\n \"name\": \"sdk-EventGrid-RG-1829\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510\",\r\n \"name\": \"sdk-EventGrid-RG-510\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RgWithPolicyZRestrictions\",\r\n \"name\": \"RgWithPolicyZRestrictions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/crptestps1147\",\r\n \"name\": \"crptestps1147\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2\",\r\n \"name\": \"PartnerRg2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1\",\r\n \"name\": \"PartnerRg1\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"name\": \"clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:51:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"name\": \"clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:56:49Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"name\": \"clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T10:02:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"name\": \"clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T20:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7867\",\r\n \"name\": \"RGName-ps7867\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1794\",\r\n \"name\": \"RGName-ps1794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4072\",\r\n \"name\": \"RGName-ps4072\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-5486?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTQ4Nj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-9024?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTAyND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1db7b353-f33d-40e3-aa35-3f12edbec095" + "608f7f19-faaf-4065-b1ec-b428d285edc6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:20 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "cb6d8a09-5f6f-4282-aee3-05b53a666954" + "eeaef113-2794-4399-9cbc-ab32b5f7b31a" ], "x-ms-correlation-request-id": [ - "cb6d8a09-5f6f-4282-aee3-05b53a666954" + "eeaef113-2794-4399-9cbc-ab32b5f7b31a" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015421Z:cb6d8a09-5f6f-4282-aee3-05b53a666954" + "CENTRALUSEUAP:20210219T005336Z:eeaef113-2794-4399-9cbc-ab32b5f7b31a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:35 GMT" + ], "Content-Length": [ "202" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486\",\r\n \"name\": \"sdk-EventGrid-RG-5486\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024\",\r\n \"name\": \"sdk-EventGrid-RG-9024\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTc3MzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTAyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY1Njk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1ccbad31-e3d0-4a38-9dae-78f5744a5852" + "a437ee28-98a0-428c-a40a-4acade136486" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,39 +155,39 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:22 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/1F1CCF75-DA7A-4FA2-8A59-3D5ACA01EFB6?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6F2F7873-B66D-4FBB-935D-C47089DD335B?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "d529b55f-0693-4f39-ae48-434cc6fb330d" + "cadef7db-7747-4a5a-a011-73225f4a2f1e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1190" ], "x-ms-correlation-request-id": [ - "e5b7a930-4540-47ae-b84e-8b6bc7382ad4" + "cdecbbc5-29a0-4204-b3d3-316a5fec9e8d" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015423Z:e5b7a930-4540-47ae-b84e-8b6bc7382ad4" + "CENTRALUSEUAP:20210219T005337Z:cdecbbc5-29a0-4204-b3d3-316a5fec9e8d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:37 GMT" + ], "Content-Length": [ "310" ], @@ -198,55 +198,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732\",\r\n \"name\": \"sdk-Topic-7732\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569\",\r\n \"name\": \"sdk-Topic-6569\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/1F1CCF75-DA7A-4FA2-8A59-3D5ACA01EFB6?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMUYxQ0NGNzUtREE3QS00RkEyLThBNTktM0Q1QUNBMDFFRkI2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6F2F7873-B66D-4FBB-935D-C47089DD335B?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNkYyRjc4NzMtQjY2RC00RkJCLTkzNUQtQzQ3MDg5REQzMzVCP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:33 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3530f088-8eb5-48f5-9717-c3bed8332893" + "afce3218-0b92-4eb9-aa16-03b36631f378" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11975" ], "x-ms-correlation-request-id": [ - "f9291a29-4120-4804-b517-0214e50836e3" + "d75ddfaa-600d-46ea-8ddc-367caef9a0d4" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015433Z:f9291a29-4120-4804-b517-0214e50836e3" + "CENTRALUSEUAP:20210219T005347Z:d75ddfaa-600d-46ea-8ddc-367caef9a0d4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:47 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,55 +255,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/1F1CCF75-DA7A-4FA2-8A59-3D5ACA01EFB6?api-version=2020-06-01\",\r\n \"name\": \"1f1ccf75-da7a-4fa2-8a59-3d5aca01efb6\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6F2F7873-B66D-4FBB-935D-C47089DD335B?api-version=2020-10-15-preview\",\r\n \"name\": \"6f2f7873-b66d-4fbb-935d-c47089dd335b\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTc3MzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTAyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY1Njk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:34 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d64ee6bb-a8be-43b6-92ec-7d9f33d1c326" + "e058a52e-7f07-46b3-a2c6-d624a20448ad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11974" ], "x-ms-correlation-request-id": [ - "6a560889-7f8c-43d2-83e0-8f74d5d76b23" + "4565b1ab-9b6c-4b77-921e-96a114c71fd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015434Z:6a560889-7f8c-43d2-83e0-8f74d5d76b23" + "CENTRALUSEUAP:20210219T005347Z:4565b1ab-9b6c-4b77-921e-96a114c71fd7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:47 GMT" + ], "Content-Length": [ - "500" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,61 +312,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7732.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"510a9b18-f294-4716-aec7-9e9d49b4d28e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732\",\r\n \"name\": \"sdk-Topic-7732\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-6569.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a7923e41-fff9-4941-b705-69c269768bcd\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569\",\r\n \"name\": \"sdk-Topic-6569\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTc3MzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTAyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY1Njk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "381d3c6e-c622-453a-981c-551e1c054bf7" + "78385cf7-27ec-40ae-b86b-6c8409c81fa8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c97540af-c511-4747-9599-af34178fa4b7" + "41be9675-3547-44e8-b6e9-956f50c1e67c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11973" ], "x-ms-correlation-request-id": [ - "e1aee2a8-caf6-45b8-aae8-39d9328958b9" + "37e6026a-0dbe-4575-a4ed-a203609a22ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015439Z:e1aee2a8-caf6-45b8-aae8-39d9328958b9" + "CENTRALUSEUAP:20210219T005352Z:37e6026a-0dbe-4575-a4ed-a203609a22ae" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:52 GMT" + ], "Content-Length": [ - "500" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,61 +375,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7732.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"510a9b18-f294-4716-aec7-9e9d49b4d28e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732\",\r\n \"name\": \"sdk-Topic-7732\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-6569.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a7923e41-fff9-4941-b705-69c269768bcd\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569\",\r\n \"name\": \"sdk-Topic-6569\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTc3MzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTAyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY1Njk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d21aebd-3efc-440b-a840-b8f54d36e18c" + "f8234656-78a3-4fe8-9d1a-b87d943e07c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d47ab88-bfc6-4cca-8840-c0a0c8b9f2e8" + "67157c4f-35a6-4a4d-ad8b-f5dfdb5cc3d8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11972" ], "x-ms-correlation-request-id": [ - "8b98a089-e523-4c76-8cb9-a9334553e5f8" + "62383fa9-cbf4-42f0-89ac-9cb8122e713f" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015439Z:8b98a089-e523-4c76-8cb9-a9334553e5f8" + "CENTRALUSEUAP:20210219T005353Z:62383fa9-cbf4-42f0-89ac-9cb8122e713f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:52 GMT" + ], "Content-Length": [ - "500" + "538" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,26 +438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7732.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"510a9b18-f294-4716-aec7-9e9d49b4d28e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732\",\r\n \"name\": \"sdk-Topic-7732\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-6569.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a7923e41-fff9-4941-b705-69c269768bcd\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569\",\r\n \"name\": \"sdk-Topic-6569\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-7000?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTU0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy03NzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNzAwMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8918?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODkxOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"ServiceBusQueue\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"operatorType\": \"StringContains\",\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"operatorType\": \"NumberIn\",\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"operatorType\": \"BoolEquals\",\r\n \"value\": true,\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"operatorType\": \"StringContains\",\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"endpointType\": \"StorageBlob\",\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d7e99b03-f6ba-4e04-8fa8-10f3d2d3419e" + "e1cf79ac-f6ba-44d9-95cb-af45428d8072" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -470,41 +470,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:39 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6EBEFBFB-95AA-4026-BF95-E2CBFF3D094D?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/CD5955E9-9F76-4C8C-9F57-E6A8DFBB1A80?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "c3ec0685-8a40-4537-a540-dd5748dfb42d" + "598f198e-2309-45bd-9f9f-9fb106c1d7f8" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "899" ], "x-ms-correlation-request-id": [ - "dc10b45d-a9a9-41e2-9ad2-6bab321db6db" + "32bdbe77-5a76-4ca7-b197-6a050c533577" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015439Z:dc10b45d-a9a9-41e2-9ad2-6bab321db6db" + "CENTRALUSEUAP:20210219T005354Z:32bdbe77-5a76-4ca7-b197-6a050c533577" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:54 GMT" + ], "Content-Length": [ - "1485" + "1503" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,55 +513,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-5486/providers/microsoft.eventgrid/topics/sdk-topic-7732\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-7000\",\r\n \"name\": \"sdk-EventSubscription-7000\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9024/providers/microsoft.eventgrid/topics/sdk-topic-6569\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8918\",\r\n \"name\": \"sdk-EventSubscription-8918\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6EBEFBFB-95AA-4026-BF95-E2CBFF3D094D?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNkVCRUZCRkItOTVBQS00MDI2LUJGOTUtRTJDQkZGM0QwOTREP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/CD5955E9-9F76-4C8C-9F57-E6A8DFBB1A80?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQ0Q1OTU1RTktOUY3Ni00QzhDLTlGNTctRTZBOERGQkIxQTgwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4d2cb7b0-34fe-40b7-895c-3b665b3003f9" + "5ea9f0b4-8411-4d6b-918a-a90062507c5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11971" ], "x-ms-correlation-request-id": [ - "ae52505a-8ff0-4d6a-a19c-b44f75f48019" + "a87cb8b8-5e6d-4a00-88cd-c75dbbe99d29" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015450Z:ae52505a-8ff0-4d6a-a19c-b44f75f48019" + "CENTRALUSEUAP:20210219T005404Z:a87cb8b8-5e6d-4a00-88cd-c75dbbe99d29" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:04 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,55 +570,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6EBEFBFB-95AA-4026-BF95-E2CBFF3D094D?api-version=2020-06-01\",\r\n \"name\": \"6ebefbfb-95aa-4026-bf95-e2cbff3d094d\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/CD5955E9-9F76-4C8C-9F57-E6A8DFBB1A80?api-version=2020-10-15-preview\",\r\n \"name\": \"cd5955e9-9f76-4c8c-9f57-e6a8dfbb1a80\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-7000?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTU0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy03NzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNzAwMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8918?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODkxOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79adbc78-2a3a-49dd-9752-60964a6045b4" + "dad85600-0bef-44d0-9418-d22f6e639d01" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11970" ], "x-ms-correlation-request-id": [ - "b28cc3c1-9305-4bba-b722-bfa47426ad14" + "74918d03-f5ac-4fba-acaa-b3452d914a38" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015450Z:b28cc3c1-9305-4bba-b722-bfa47426ad14" + "CENTRALUSEUAP:20210219T005404Z:74918d03-f5ac-4fba-acaa-b3452d914a38" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:04 GMT" + ], "Content-Length": [ - "1526" + "1544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,61 +627,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-5486/providers/microsoft.eventgrid/topics/sdk-topic-7732\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-7000\",\r\n \"name\": \"sdk-EventSubscription-7000\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9024/providers/microsoft.eventgrid/topics/sdk-topic-6569\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8918\",\r\n \"name\": \"sdk-EventSubscription-8918\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-7000?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTU0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy03NzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNzAwMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8918?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODkxOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03d5a714-cf1e-46e2-8e42-a58251afa915" + "f358e09d-d364-4e79-beac-d8b2454793fa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "327318be-d7f5-4523-87fb-3c4da36e1239" + "5e89cc34-7e28-4819-8d5f-046c14794b22" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11969" ], "x-ms-correlation-request-id": [ - "26b2d37e-169f-40ed-842b-a9863bc57960" + "b6763999-541c-4c4b-b47d-69dd37846198" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015455Z:26b2d37e-169f-40ed-842b-a9863bc57960" + "CENTRALUSEUAP:20210219T005409Z:b6763999-541c-4c4b-b47d-69dd37846198" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:09 GMT" + ], "Content-Length": [ - "1526" + "1544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,61 +690,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-5486/providers/microsoft.eventgrid/topics/sdk-topic-7732\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-7000\",\r\n \"name\": \"sdk-EventSubscription-7000\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9024/providers/microsoft.eventgrid/topics/sdk-topic-6569\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8918\",\r\n \"name\": \"sdk-EventSubscription-8918\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-7000?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTU0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy03NzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNzAwMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8918?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODkxOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "730b9622-2be6-49d4-bc22-c4001b445765" + "d82e7831-c6c8-499a-8da8-06d15101e675" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "287f9867-3d5f-4f10-815d-109264aa9157" + "a159fbe9-eff9-466b-a492-ac9e1f1ec9cd" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11968" ], "x-ms-correlation-request-id": [ - "bb42cd99-a39e-4bce-9eb1-502e2313604b" + "fb12604a-7618-4da3-8024-bea1a0bfd169" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015455Z:bb42cd99-a39e-4bce-9eb1-502e2313604b" + "CENTRALUSEUAP:20210219T005409Z:fb12604a-7618-4da3-8024-bea1a0bfd169" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:09 GMT" + ], "Content-Length": [ - "1526" + "1544" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,124 +753,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-5486/providers/microsoft.eventgrid/topics/sdk-topic-7732\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-7000\",\r\n \"name\": \"sdk-EventSubscription-7000\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9024/providers/microsoft.eventgrid/topics/sdk-topic-6569\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.ServiceBus/namespaces/devexpservicebus/queues/devexpdestination\"\r\n },\r\n \"endpointType\": \"ServiceBusQueue\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true,\r\n \"advancedFilters\": [\r\n {\r\n \"values\": [\r\n \"sdk\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"topic\"\r\n },\r\n {\r\n \"values\": [\r\n 1.0,\r\n 2.0,\r\n 3.0\r\n ],\r\n \"operatorType\": \"NumberIn\",\r\n \"key\": \"data.key1\"\r\n },\r\n {\r\n \"value\": true,\r\n \"operatorType\": \"BoolEquals\",\r\n \"key\": \"data.key2\"\r\n },\r\n {\r\n \"values\": [\r\n \"3.0\"\r\n ],\r\n \"operatorType\": \"StringContains\",\r\n \"key\": \"dataversion\"\r\n }\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 10,\r\n \"eventTimeToLiveInMinutes\": 20\r\n },\r\n \"deadLetterDestination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.Storage/storageAccounts/devexpstg\",\r\n \"blobContainerName\": \"dlq\"\r\n },\r\n \"endpointType\": \"StorageBlob\"\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8918\",\r\n \"name\": \"sdk-EventSubscription-8918\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-7000?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTU0ODYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy03NzMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tNzAwMD9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8918?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy02NTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODkxOD9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96054f14-f84f-46ab-94af-89cb4328994c" + "6dd6ff12-88e8-4ed2-882c-415c61e631c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:54:55 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/F9CE93DA-3897-469A-87C3-AE60D6A6AEF8?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/CEEA5A5A-8C40-4AA8-AAAF-7F171629DCEB?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F9CE93DA-3897-469A-87C3-AE60D6A6AEF8?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/CEEA5A5A-8C40-4AA8-AAAF-7F171629DCEB?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14994" ], "x-ms-request-id": [ - "17dfa233-5f5e-40a7-a2ea-a2b9cbbad3e8" + "78832995-5f76-4a80-8cb9-8d0cc66e8216" ], "x-ms-correlation-request-id": [ - "17dfa233-5f5e-40a7-a2ea-a2b9cbbad3e8" + "78832995-5f76-4a80-8cb9-8d0cc66e8216" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015455Z:17dfa233-5f5e-40a7-a2ea-a2b9cbbad3e8" + "CENTRALUSEUAP:20210219T005410Z:78832995-5f76-4a80-8cb9-8d0cc66e8216" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:54:09 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F9CE93DA-3897-469A-87C3-AE60D6A6AEF8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRjlDRTkzREEtMzg5Ny00NjlBLTg3QzMtQUU2MEQ2QTZBRUY4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/CEEA5A5A-8C40-4AA8-AAAF-7F171629DCEB?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQ0VFQTVBNUEtOEM0MC00QUE4LUFBQUYtN0YxNzE2MjlEQ0VCP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:55:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a06453fd-6faf-44a5-aa7a-5491af9a9b07" + "5bb9d14d-06b6-4b8f-bc2f-ad7dcccc5fdf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11967" ], "x-ms-correlation-request-id": [ - "965b78cb-f9de-4c84-bb23-7ad54d1b2464" + "8920e5cc-d814-4c0f-950d-2071f46125da" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015505Z:965b78cb-f9de-4c84-bb23-7ad54d1b2464" + "CENTRALUSEUAP:20210219T005420Z:8920e5cc-d814-4c0f-950d-2071f46125da" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:20 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -879,178 +879,178 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F9CE93DA-3897-469A-87C3-AE60D6A6AEF8?api-version=2020-06-01\",\r\n \"name\": \"f9ce93da-3897-469a-87c3-ae60d6a6aef8\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/CEEA5A5A-8C40-4AA8-AAAF-7F171629DCEB?api-version=2020-10-15-preview\",\r\n \"name\": \"ceea5a5a-8c40-4aa8-aaaf-7f171629dceb\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/F9CE93DA-3897-469A-87C3-AE60D6A6AEF8?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvRjlDRTkzREEtMzg5Ny00NjlBLTg3QzMtQUU2MEQ2QTZBRUY4P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/CEEA5A5A-8C40-4AA8-AAAF-7F171629DCEB?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvQ0VFQTVBNUEtOEM0MC00QUE4LUFBQUYtN0YxNzE2MjlEQ0VCP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:55:05 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b3086429-fc7a-4610-9a9d-70d1ea995ce3" + "eba853b6-9367-4248-ad98-a556d7ae8d53" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11966" ], "x-ms-correlation-request-id": [ - "44f7d8d9-9b35-44d3-bd2c-00cc83f1bbba" + "72e863df-1967-41ca-9033-ae7217278704" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015506Z:44f7d8d9-9b35-44d3-bd2c-00cc83f1bbba" + "CENTRALUSEUAP:20210219T005420Z:72e863df-1967-41ca-9033-ae7217278704" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:54:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5486/providers/Microsoft.EventGrid/topics/sdk-Topic-7732?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTQ4Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTc3MzI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024/providers/Microsoft.EventGrid/topics/sdk-Topic-6569?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTAyNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTY1Njk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "361e8ef9-0803-4c9b-89eb-6a68a50ec963" + "8bee6cea-951a-4eac-b4d9-e6a6758d7f46" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:55:06 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/33D67B8D-B2A2-478A-8E2F-3F7F2200F5BD?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/DEC08D3A-69F2-4477-82E7-8D46DE7F2E10?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/33D67B8D-B2A2-478A-8E2F-3F7F2200F5BD?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DEC08D3A-69F2-4477-82E7-8D46DE7F2E10?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14993" ], "x-ms-request-id": [ - "b909ae3a-b643-4205-9455-0a60b5b0b60c" + "42b440b6-7285-4e13-a680-ce7bd822981d" ], "x-ms-correlation-request-id": [ - "b909ae3a-b643-4205-9455-0a60b5b0b60c" + "42b440b6-7285-4e13-a680-ce7bd822981d" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015506Z:b909ae3a-b643-4205-9455-0a60b5b0b60c" + "CENTRALUSEUAP:20210219T005421Z:42b440b6-7285-4e13-a680-ce7bd822981d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:54:20 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/33D67B8D-B2A2-478A-8E2F-3F7F2200F5BD?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMzNENjdCOEQtQjJBMi00NzhBLThFMkYtM0Y3RjIyMDBGNUJEP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DEC08D3A-69F2-4477-82E7-8D46DE7F2E10?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvREVDMDhEM0EtNjlGMi00NDc3LTgyRTctOEQ0NkRFN0YyRTEwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:55:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "03ff20d9-9cdc-4d46-8c28-730795c6a582" + "fea96ee8-b99f-4423-8719-f34df6002b37" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11965" ], "x-ms-correlation-request-id": [ - "099d595b-ec1b-4f0f-b9ce-b384df8de2d5" + "c460cad1-482c-4486-abcf-913f2b0a15ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015516Z:099d595b-ec1b-4f0f-b9ce-b384df8de2d5" + "CENTRALUSEUAP:20210219T005431Z:c460cad1-482c-4486-abcf-913f2b0a15ec" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:30 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1059,58 +1059,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/33D67B8D-B2A2-478A-8E2F-3F7F2200F5BD?api-version=2020-06-01\",\r\n \"name\": \"33d67b8d-b2a2-478a-8e2f-3f7f2200f5bd\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DEC08D3A-69F2-4477-82E7-8D46DE7F2E10?api-version=2020-10-15-preview\",\r\n \"name\": \"dec08d3a-69f2-4477-82e7-8d46de7f2e10\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/33D67B8D-B2A2-478A-8E2F-3F7F2200F5BD?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvMzNENjdCOEQtQjJBMi00NzhBLThFMkYtM0Y3RjIyMDBGNUJEP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/DEC08D3A-69F2-4477-82E7-8D46DE7F2E10?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvREVDMDhEM0EtNjlGMi00NDc3LTgyRTctOEQ0NkRFN0YyRTEwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:55:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "229b49bd-5646-491e-a3b8-d6cf168b414c" + "773600a6-9591-428e-a74d-fa02ded62beb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11964" ], "x-ms-correlation-request-id": [ - "d396389a-0bc6-40a6-9f64-946c37270b2a" + "da54f9b3-95e4-4eca-95da-256431181204" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015516Z:d396389a-0bc6-40a6-9f64-946c37270b2a" + "CENTRALUSEUAP:20210219T005431Z:da54f9b3-95e4-4eca-95da-256431181204" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:54:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1119,9 +1119,9 @@ ], "Names": { "EventSubscriptionCreateGetUpdateDeleteWithDlqAdvancedFilterServiceBusAsDestination": [ - "sdk-EventGrid-RG-5486", - "sdk-Topic-7732", - "sdk-EventSubscription-7000" + "sdk-EventGrid-RG-9024", + "sdk-Topic-6569", + "sdk-EventSubscription-8918" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToAzureSubscriptionCreateGetUpdateDelete.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToAzureSubscriptionCreateGetUpdateDelete.json index b1566b9b6ee0..0e6e28125ab6 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToAzureSubscriptionCreateGetUpdateDelete.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToAzureSubscriptionCreateGetUpdateDelete.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6442?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY0NDI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8329?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTgzMjk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": false\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d6310f9f-35ae-4852-872f-6cacd22f4b74" + "50136bd6-3c03-4979-8a98-49c2e5138929" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -29,41 +29,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:10:34 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/6ACA98A5-779A-4989-BA1A-C478112E6169?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/44BA3910-0712-4D83-9A74-042B54E98A03?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "7be95f6c-901c-4bcd-819d-7098185d8713" + "b5b51581-aff1-47e8-9f73-dcfd28823b9f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "899" + "898" ], "x-ms-correlation-request-id": [ - "872aec54-eb39-4708-acab-60250c2b98bd" + "ede2f2e7-0769-4ce6-bd2c-86d5f3102d94" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021035Z:872aec54-eb39-4708-acab-60250c2b98bd" + "CENTRALUSEUAP:20210219T004639Z:ede2f2e7-0769-4ce6-bd2c-86d5f3102d94" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:39 GMT" + ], "Content-Length": [ - "1099" + "1117" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72,55 +72,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6442\",\r\n \"name\": \"sdk-EventSubscription-6442\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8329\",\r\n \"name\": \"sdk-EventSubscription-8329\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/6ACA98A5-779A-4989-BA1A-C478112E6169?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvNkFDQTk4QTUtNzc5QS00OTg5LUJBMUEtQzQ3ODExMkU2MTY5P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/44BA3910-0712-4D83-9A74-042B54E98A03?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvNDRCQTM5MTAtMDcxMi00RDgzLTlBNzQtMDQyQjU0RTk4QTAzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:10:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "74e21724-ab13-4120-b552-89725ad77b39" + "fac1a0f3-6480-4ea2-a344-3f904c0b4a26" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11978" ], "x-ms-correlation-request-id": [ - "dfa32c69-dff9-4004-a42b-82c4ce3a7dcf" + "cc1a03cf-864d-4cee-9fe8-84b179fed562" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021045Z:dfa32c69-dff9-4004-a42b-82c4ce3a7dcf" + "CENTRALUSEUAP:20210219T004650Z:cc1a03cf-864d-4cee-9fe8-84b179fed562" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:49 GMT" + ], "Content-Length": [ - "262" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -129,55 +129,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/6ACA98A5-779A-4989-BA1A-C478112E6169?api-version=2020-06-01\",\r\n \"name\": \"6aca98a5-779a-4989-ba1a-c478112e6169\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/44BA3910-0712-4D83-9A74-042B54E98A03?api-version=2020-10-15-preview\",\r\n \"name\": \"44ba3910-0712-4d83-9a74-042b54e98a03\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6442?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY0NDI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8329?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTgzMjk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:10:45 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "79c0ef5b-94a0-48f5-8d2f-183cbaf7130e" + "f74a4504-395a-4952-af0a-7acd7687cc59" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11977" ], "x-ms-correlation-request-id": [ - "e13fc188-b679-4bd6-8ee2-4095eff64be0" + "240fa566-b1bc-4500-976d-5a1937b15a77" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021045Z:e13fc188-b679-4bd6-8ee2-4095eff64be0" + "CENTRALUSEUAP:20210219T004650Z:240fa566-b1bc-4500-976d-5a1937b15a77" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:49 GMT" + ], "Content-Length": [ - "1100" + "1215" ], "Content-Type": [ "application/json; charset=utf-8" @@ -186,61 +186,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6442\",\r\n \"name\": \"sdk-EventSubscription-6442\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8329\",\r\n \"name\": \"sdk-EventSubscription-8329\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6442?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY0NDI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8329?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTgzMjk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "708c0bd0-9161-442d-8a37-fb4b67cf75f6" + "cf909948-c0b4-4a80-8de9-a8411a97d125" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:10:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b89fc4f9-4e04-4d9f-9888-e2f78a536ff8" + "c118ddd4-5a89-4dcb-a014-310c797508ba" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11976" ], "x-ms-correlation-request-id": [ - "ed9d6d2d-98f5-46f0-9dd0-90d92e2394dc" + "fee4a5e4-fdb1-4e51-8a78-f5d034e79afd" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021050Z:ed9d6d2d-98f5-46f0-9dd0-90d92e2394dc" + "CENTRALUSEUAP:20210219T004655Z:fee4a5e4-fdb1-4e51-8a78-f5d034e79afd" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:55 GMT" + ], "Content-Length": [ - "1100" + "1215" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,61 +249,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6442\",\r\n \"name\": \"sdk-EventSubscription-6442\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8329\",\r\n \"name\": \"sdk-EventSubscription-8329\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6442?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY0NDI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8329?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTgzMjk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef11977b-e85d-4a4b-afb5-2c44ebc11dcc" + "43cffacf-dc81-4b1a-adb3-0ed4349406d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:10:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d205de64-bc49-4636-8571-6d72587deaaa" + "91cf9791-433f-487e-be7f-d1b25547aaf6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11975" ], "x-ms-correlation-request-id": [ - "eadf677c-11b2-4056-97c9-e45ee25493ea" + "26a13fba-6952-4375-8769-3d4b642bfb6c" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021050Z:eadf677c-11b2-4056-97c9-e45ee25493ea" + "CENTRALUSEUAP:20210219T004655Z:26a13fba-6952-4375-8769-3d4b642bfb6c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:55 GMT" + ], "Content-Length": [ - "1100" + "1215" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,61 +312,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6442\",\r\n \"name\": \"sdk-EventSubscription-6442\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8329\",\r\n \"name\": \"sdk-EventSubscription-8329\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ae8e2ff-2cba-433b-a044-f76a97bcdb7c" + "76450681-5abd-419d-a70c-d9e837fe8659" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:10:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "829665fb-3c57-45bc-a28a-89dd1da57258" + "d3fd9350-3caa-4eda-adc9-ed1019d0e339" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11974" ], "x-ms-correlation-request-id": [ - "c1433da6-2504-45aa-b073-743d228515db" + "e670137f-1058-4627-ab1a-f04b98ec66a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021050Z:c1433da6-2504-45aa-b073-743d228515db" + "CENTRALUSEUAP:20210219T004655Z:e670137f-1058-4627-ab1a-f04b98ec66a2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:55 GMT" + ], "Content-Length": [ - "14805" + "16053" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,124 +375,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/1fun9ou1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/mysub600\",\r\n \"name\": \"mysub600\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-18.brazilus.logic.azure.com/workflows/c22dee70ada34ffca23b5fc89232166a/triggers/When_a_resource_event_occurs/versions/08586988636200583748/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp46d74b10-aa69-484e-aec2-52bfac87e2d9\",\r\n \"name\": \"LogicApp46d74b10-aa69-484e-aec2-52bfac87e2d9\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-01.brazilus.logic.azure.com/workflows/87f6a4a8c5f3473ab9fd50076da6e909/triggers/On_a_resource_event/versions/08586988571716815965/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp4a6316a3-5bda-44c8-ae67-bfb83aa31d1e\",\r\n \"name\": \"LogicApp4a6316a3-5bda-44c8-ae67-bfb83aa31d1e\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/10jslly1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/kalses112\",\r\n \"name\": \"kalses112\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kishpdummyapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg/providers/Microsoft.EventGrid/eventSubscriptions/subValid\",\r\n \"name\": \"subValid\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/11x4isl1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/eventSubscriptions/cesarArmRgTest\",\r\n \"name\": \"cesarArmRgTest\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/1jimsdh1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/rgsub1\",\r\n \"name\": \"rgsub1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridtestfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/eventSubscriptions/cesarTest3\",\r\n \"name\": \"cesarTest3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/snorop\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridtestfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Snorop/providers/Microsoft.EventGrid/eventSubscriptions/SomeSubNameHere\",\r\n \"name\": \"SomeSubNameHere\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest\",\r\n \"name\": \"armswitchtest\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest2\",\r\n \"name\": \"armswitchtest2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest3\",\r\n \"name\": \"armswitchtest3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/15ksip71\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/eventSubscriptions/examplesubscription2\",\r\n \"name\": \"examplesubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/15ksip71\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/eventSubscriptions/examplesubscription4\",\r\n \"name\": \"examplesubscription4\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demorg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kishpdummyapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demoRg/providers/Microsoft.EventGrid/eventSubscriptions/testRg\",\r\n \"name\": \"testRg\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4\",\r\n \"provisioningState\": \"AwaitingManualAction\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridtestfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/alleventtypescheck\",\r\n \"name\": \"alleventtypescheck\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-c5f6c255-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-c5f6c255-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-88e492c5-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-88e492c5-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-86f9994d-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-86f9994d-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/testeventhublocalusw2/eventhubs/testeventhublocalusw2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1439\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-arm-runner-subscription-West-US-2\",\r\n \"name\": \"eg-arm-runner-subscription-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2020-06-01&$skiptoken=%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bAJSCgAAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23FPC%3aAgEAGgAkAFKKJYEhAABvU4Z5gAGGqoDxDiQAPYfIgPGBEQAAKP6AAYAEggEaAG2E0SpWABKAAcCAAe2CBYACgCEBHAChA5AJAgIAVoEECAByByADAgIyggkUANEQDABRAwwAEQAAw8WHEoDxCJhhCgIAoYMRBACYpT6AGggAC5PKo8EAAAw%3d%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d&$top=20\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/1fun9ou1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/mysub600\",\r\n \"name\": \"mysub600\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-18.brazilus.logic.azure.com/workflows/c22dee70ada34ffca23b5fc89232166a/triggers/When_a_resource_event_occurs/versions/08586988636200583748/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp46d74b10-aa69-484e-aec2-52bfac87e2d9\",\r\n \"name\": \"LogicApp46d74b10-aa69-484e-aec2-52bfac87e2d9\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://prod-01.brazilus.logic.azure.com/workflows/87f6a4a8c5f3473ab9fd50076da6e909/triggers/On_a_resource_event/versions/08586988571716815965/run\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventGrid/eventSubscriptions/LogicApp4a6316a3-5bda-44c8-ae67-bfb83aa31d1e\",\r\n \"name\": \"LogicApp4a6316a3-5bda-44c8-ae67-bfb83aa31d1e\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/10jslly1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/kalses112\",\r\n \"name\": \"kalses112\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kishpdummyapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/egprodtestingrg/providers/Microsoft.EventGrid/eventSubscriptions/subValid\",\r\n \"name\": \"subValid\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/11x4isl1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/eventSubscriptions/cesarArmRgTest\",\r\n \"name\": \"cesarArmRgTest\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/1jimsdh1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/gridResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/rgsub1\",\r\n \"name\": \"rgsub1\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridtestfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cesartopics/providers/Microsoft.EventGrid/eventSubscriptions/cesarTest3\",\r\n \"name\": \"cesarTest3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/snorop\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://eventgridtestfunctionapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Snorop/providers/Microsoft.EventGrid/eventSubscriptions/SomeSubNameHere\",\r\n \"name\": \"SomeSubNameHere\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest\",\r\n \"name\": \"armswitchtest\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest2\",\r\n \"name\": \"armswitchtest2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/ue9kc5ue\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kalsrg/providers/Microsoft.EventGrid/eventSubscriptions/armswitchtest3\",\r\n \"name\": \"armswitchtest3\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/15ksip71\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/eventSubscriptions/examplesubscription2\",\r\n \"name\": \"examplesubscription2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://requestb.in/15ksip71\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": null,\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/eventSubscriptions/examplesubscription4\",\r\n \"name\": \"examplesubscription4\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demorg\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://kishpdummyapp.azurewebsites.net/api/HttpTriggerCSharp1\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demoRg/providers/Microsoft.EventGrid/eventSubscriptions/testRg\",\r\n \"name\": \"testRg\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-c5f6c255-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-c5f6c255-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-88e492c5-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-88e492c5-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventgridrunnertestresourcegroup\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"resourceId\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventHub/namespaces/EventHubTestWithEventGrid1/eventhubs/egarmrunnereventhublocaltestwestus2\"\r\n },\r\n \"endpointType\": \"EventHub\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"\",\r\n \"subjectEndsWith\": \"\"\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/eventSubscriptions/eg-crud-runner-subscription-86f9994d-West-US-2\",\r\n \"name\": \"eg-crud-runner-subscription-86f9994d-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/demo-devopsautomation\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://s13events.azure-automation.net/webhooks\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/Demo-DevOpsAutomation/providers/Microsoft.Compute/virtualMachines\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Demo-DevOpsAutomation/providers/Microsoft.EventGrid/eventSubscriptions/AzureAutomation\",\r\n \"name\": \"AzureAutomation\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n },\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://s13events.azure-automation.net/webhooks\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/contosovms/providers/Microsoft.Compute/virtualMachines\",\r\n \"subjectEndsWith\": \"\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/contosovms/providers/Microsoft.EventGrid/eventSubscriptions/VMCreation\",\r\n \"name\": \"VMCreation\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ],\r\n \"nextLink\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2020-10-15-preview&$skiptoken=%7b%22token%22%3a%22%2bRID%3a%7e9fgUAOy9bAK4CwAAAAAAAA%3d%3d%23RT%3a1%23TRC%3a20%23ISV%3a2%23IEO%3a65551%23QCF%3a3%23FPC%3aAgEANQAgALELAG9ThnmAAYaqgPEOJAA9h8iA8YERAAAo%2foABgASCARgAQS9WABKAAcCAAe2CBYACgCEBHAChA5AJAgIAVoEECAByByADAgIyggkUANEQDABRAwwAEQAAw8WHEoDxCJhhEQIAmKUbAgAatTMCAPqQNQYAwgcA4BAA%22%2c%22range%22%3a%7b%22min%22%3a%22%22%2c%22max%22%3a%22FF%22%7d%7d&$top=20\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6442?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY0NDI/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8329?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTgzMjk/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ae67ae8-379f-405b-91ac-5f6b6d64e5b2" + "95a5982e-d9b7-4331-90fe-645faa689137" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:10:51 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/B65F27B1-94FC-42D9-9297-71A50D0753DD?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/26E415B8-FA2E-45A9-A94B-970C7AA53A50?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/B65F27B1-94FC-42D9-9297-71A50D0753DD?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/26E415B8-FA2E-45A9-A94B-970C7AA53A50?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-request-id": [ - "73439949-ef3b-4996-bc11-7b897864b93e" + "2615841d-a13e-435d-8545-ddfcf1907082" ], "x-ms-correlation-request-id": [ - "73439949-ef3b-4996-bc11-7b897864b93e" + "2615841d-a13e-435d-8545-ddfcf1907082" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021051Z:73439949-ef3b-4996-bc11-7b897864b93e" + "CENTRALUSEUAP:20210219T004656Z:2615841d-a13e-435d-8545-ddfcf1907082" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:46:56 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/B65F27B1-94FC-42D9-9297-71A50D0753DD?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvQjY1RjI3QjEtOTRGQy00MkQ5LTkyOTctNzFBNTBEMDc1M0REP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/26E415B8-FA2E-45A9-A94B-970C7AA53A50?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMjZFNDE1QjgtRkEyRS00NUE5LUE5NEItOTcwQzdBQTUzQTUwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "81c9ec04-a792-4079-b092-133eb1905d17" + "ffdcb04e-389f-4928-87e9-b79afbbb5c13" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11973" ], "x-ms-correlation-request-id": [ - "e4a416d6-dd2b-471e-90d6-07d70dfe4590" + "57b1ca58-4f79-4396-b0bd-982ae6880731" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021101Z:e4a416d6-dd2b-471e-90d6-07d70dfe4590" + "CENTRALUSEUAP:20210219T004706Z:57b1ca58-4f79-4396-b0bd-982ae6880731" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:47:06 GMT" + ], "Content-Length": [ - "262" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -501,58 +501,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/B65F27B1-94FC-42D9-9297-71A50D0753DD?api-version=2020-06-01\",\r\n \"name\": \"b65f27b1-94fc-42d9-9297-71a50d0753dd\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/26E415B8-FA2E-45A9-A94B-970C7AA53A50?api-version=2020-10-15-preview\",\r\n \"name\": \"26e415b8-fa2e-45a9-a94b-970c7aa53a50\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/B65F27B1-94FC-42D9-9297-71A50D0753DD?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvQjY1RjI3QjEtOTRGQy00MkQ5LTkyOTctNzFBNTBEMDc1M0REP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/26E415B8-FA2E-45A9-A94B-970C7AA53A50?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvMjZFNDE1QjgtRkEyRS00NUE5LUE5NEItOTcwQzdBQTUzQTUwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:11:01 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d2972ae7-8f33-45f3-b51e-6d2304d2b570" + "1f21c67a-cd00-4d8c-8f95-4a25c4e5195e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "898" ], "x-ms-correlation-request-id": [ - "1cea49a8-d1ce-42eb-920f-14b7d9c1c434" + "ac53793a-3047-4d6d-adde-e1fc9e009510" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021101Z:1cea49a8-d1ce-42eb-920f-14b7d9c1c434" + "CENTRALUSEUAP:20210219T004707Z:ac53793a-3047-4d6d-adde-e1fc9e009510" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:47:06 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -561,7 +561,7 @@ ], "Names": { "EventSubscriptionToAzureSubscriptionCreateGetUpdateDelete": [ - "sdk-EventSubscription-6442" + "sdk-EventSubscription-8329" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToCustomTopicCreateGetUpdateDelete.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToCustomTopicCreateGetUpdateDelete.json index dd830766980e..e64054dea31f 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToCustomTopicCreateGetUpdateDelete.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToCustomTopicCreateGetUpdateDelete.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e61caec-af60-4e22-bb9f-08097a6012a6" + "7b1577b0-0cad-4851-adf5-5de082fa19bc" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:22 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-request-id": [ - "4fefac9a-75c3-4b7d-bb8e-4adc6a919624" + "09ee9fd5-ef25-49dd-8682-68f22d9c3b34" ], "x-ms-correlation-request-id": [ - "4fefac9a-75c3-4b7d-bb8e-4adc6a919624" + "09ee9fd5-ef25-49dd-8682-68f22d9c3b34" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021322Z:4fefac9a-75c3-4b7d-bb8e-4adc6a919624" + "CENTRALUSEUAP:20210219T005434Z:09ee9fd5-ef25-49dd-8682-68f22d9c3b34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "40782" + "Date": [ + "Fri, 19 Feb 2021 00:54:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "43627" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7708\",\r\n \"name\": \"sdk-EventGrid-RG-7708\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171\",\r\n \"name\": \"sdk-EventGrid-RG-9171\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1724\",\r\n \"name\": \"RGName-ps1724\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242\",\r\n \"name\": \"RGName-ps1242\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2627\",\r\n \"name\": \"RGName-ps2627\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2205\",\r\n \"name\": \"RGName-ps2205\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3309\",\r\n \"name\": \"RGName-ps3309\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5822\",\r\n \"name\": \"RGName-ps5822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9506\",\r\n \"name\": \"RGName-ps9506\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2751\",\r\n \"name\": \"sdk-EventGrid-RG-2751\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1\",\r\n \"name\": \"testRg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg\",\r\n \"name\": \"mparkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkrg\",\r\n \"name\": \"vkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"name\": \"MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi\",\r\n \"name\": \"msi\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain\",\r\n \"name\": \"msidomain\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishptestvm_group\",\r\n \"name\": \"kishptestvm_group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829\",\r\n \"name\": \"sdk-EventGrid-RG-1829\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9024\",\r\n \"name\": \"sdk-EventGrid-RG-9024\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RgWithPolicyZRestrictions\",\r\n \"name\": \"RgWithPolicyZRestrictions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/crptestps1147\",\r\n \"name\": \"crptestps1147\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2\",\r\n \"name\": \"PartnerRg2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1\",\r\n \"name\": \"PartnerRg1\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"name\": \"clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:51:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"name\": \"clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:56:49Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"name\": \"clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T10:02:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"name\": \"clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T20:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7867\",\r\n \"name\": \"RGName-ps7867\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1794\",\r\n \"name\": \"RGName-ps1794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4072\",\r\n \"name\": \"RGName-ps4072\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-8244?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODI0ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-4001?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDAwMT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4310afcf-828e-4b53-8a03-56a35a0cb09d" + "429fd377-0978-4030-8c09-82472b7b0612" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:23 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "b04048e2-3234-4a2c-ae3f-72c8105357bd" + "3cd4a7bf-5871-41bf-8dc0-1ba646312d3b" ], "x-ms-correlation-request-id": [ - "b04048e2-3234-4a2c-ae3f-72c8105357bd" + "3cd4a7bf-5871-41bf-8dc0-1ba646312d3b" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021323Z:b04048e2-3234-4a2c-ae3f-72c8105357bd" + "CENTRALUSEUAP:20210219T005434Z:3cd4a7bf-5871-41bf-8dc0-1ba646312d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:33 GMT" + ], "Content-Length": [ "202" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244\",\r\n \"name\": \"sdk-EventGrid-RG-8244\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001\",\r\n \"name\": \"sdk-EventGrid-RG-4001\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c7561889-b1f2-4cd0-8fab-c2048e05643b" + "6c6537a5-77cc-47c8-9852-272e5e7298a2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:26 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/9BF05A4E-E0CA-4503-906E-CD56E09154DF?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F8801C80-3BCA-41A8-900D-58F996D58BA1?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "a7233543-6e2c-4552-82a7-8cdce2c916b6" + "4d30bfa0-5cda-4c15-acc0-a9797a4aefc4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-correlation-request-id": [ - "75355e20-13bd-48eb-9755-036f4cdb7731" + "093d7561-c49b-46e9-a045-e5e4350f4c2d" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021327Z:75355e20-13bd-48eb-9755-036f4cdb7731" + "CENTRALUSEUAP:20210219T005435Z:093d7561-c49b-46e9-a045-e5e4350f4c2d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:35 GMT" + ], "Content-Length": [ - "339" + "333" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,55 +198,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554\",\r\n \"name\": \"sdk-Topic-4554\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4\",\r\n \"name\": \"sdk-Topic-4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/9BF05A4E-E0CA-4503-906E-CD56E09154DF?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvOUJGMDVBNEUtRTBDQS00NTAzLTkwNkUtQ0Q1NkUwOTE1NERGP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F8801C80-3BCA-41A8-900D-58F996D58BA1?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRjg4MDFDODAtM0JDQS00MUE4LTkwMEQtNThGOTk2RDU4QkExP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14f317c6-48cf-4dae-8a1b-73cd9fcaec1c" + "1e6fbeb8-c6b1-4adb-ac8c-765c129f2c86" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11963" ], "x-ms-correlation-request-id": [ - "b0ae2365-9046-448d-9ac7-c5bc5b53275c" + "5519a6be-7c2c-4814-9898-ae8a9e10906d" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021337Z:b0ae2365-9046-448d-9ac7-c5bc5b53275c" + "CENTRALUSEUAP:20210219T005445Z:5519a6be-7c2c-4814-9898-ae8a9e10906d" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:45 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,55 +255,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/9BF05A4E-E0CA-4503-906E-CD56E09154DF?api-version=2020-06-01\",\r\n \"name\": \"9bf05a4e-e0ca-4503-906e-cd56e09154df\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F8801C80-3BCA-41A8-900D-58F996D58BA1?api-version=2020-10-15-preview\",\r\n \"name\": \"f8801c80-3bca-41a8-900d-58f996d58ba1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "fdaaed70-4aff-453c-8e2d-cc1fe418485b" + "95e6168e-c0b8-432f-aa52-3d97a6057f3a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11962" ], "x-ms-correlation-request-id": [ - "addf87ae-93c9-4d0c-b7c6-0c0719db1dc9" + "70c6b251-bdc6-4674-9263-edc2eb2fe628" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021337Z:addf87ae-93c9-4d0c-b7c6-0c0719db1dc9" + "CENTRALUSEUAP:20210219T005445Z:70c6b251-bdc6-4674-9263-edc2eb2fe628" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:45 GMT" + ], "Content-Length": [ - "529" + "558" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,61 +312,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4554.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"58ef6917-4a84-4510-9cf3-68952914b646\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554\",\r\n \"name\": \"sdk-Topic-4554\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5ca22960-11aa-4993-91ad-cd3da25b2700\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4\",\r\n \"name\": \"sdk-Topic-4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "567e5427-d01c-4428-b8b8-36dc6cc82919" + "6f34f092-cf83-44e1-bca9-5fbd2ed2482a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a48565d1-fdf1-4251-97b5-db42a5c1e7f9" + "baebd4cf-3825-40ba-914b-87e72c7cc350" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11961" ], "x-ms-correlation-request-id": [ - "1f43fee7-5f17-40c6-b9b8-21e58c9c600c" + "d70a29b6-bd7b-4d9f-8126-b976427edb82" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021342Z:1f43fee7-5f17-40c6-b9b8-21e58c9c600c" + "CENTRALUSEUAP:20210219T005451Z:d70a29b6-bd7b-4d9f-8126-b976427edb82" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:50 GMT" + ], "Content-Length": [ - "529" + "558" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,61 +375,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4554.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"58ef6917-4a84-4510-9cf3-68952914b646\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554\",\r\n \"name\": \"sdk-Topic-4554\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5ca22960-11aa-4993-91ad-cd3da25b2700\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4\",\r\n \"name\": \"sdk-Topic-4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6216852d-50f2-42e8-8a8e-627d92aa1e3e" + "bb20fa6f-baa9-4a9e-b731-f7f0f851961a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:41 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3053cc2d-4ea1-4f88-83c4-a4a5e2329890" + "3c85c21e-9d8c-447c-b97d-8346d68faf49" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11960" ], "x-ms-correlation-request-id": [ - "a9f0e99d-98f7-48da-8207-c53807c7c243" + "9cefcbe9-d705-462d-a699-fce8bc26417a" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021342Z:a9f0e99d-98f7-48da-8207-c53807c7c243" + "CENTRALUSEUAP:20210219T005451Z:9cefcbe9-d705-462d-a699-fce8bc26417a" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:51 GMT" + ], "Content-Length": [ - "529" + "558" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,26 +438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4554.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"58ef6917-4a84-4510-9cf3-68952914b646\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554\",\r\n \"name\": \"sdk-Topic-4554\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5ca22960-11aa-4993-91ad-cd3da25b2700\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4\",\r\n \"name\": \"sdk-Topic-4\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTgyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODAwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTQwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTIyNj9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a82d03c9-c6d7-4c63-8a52-577717affd3b" + "24706713-dc17-4e4d-a498-0d3ed6b95c9a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -470,41 +470,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:42 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/4EA3764C-E28D-4877-972C-9B5D60113A3D?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F70D6045-93E5-4A85-8579-2438ECB3A54B?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "b874110e-81bb-473a-b20f-074b54238c8a" + "a02a9f28-49ac-4d51-84f7-0700ee4444f2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "899" + "898" ], "x-ms-correlation-request-id": [ - "7cec6b4e-f303-42de-b92e-1526664e78e5" + "34145096-6f28-467c-9372-7bbf3a75e5e4" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021343Z:7cec6b4e-f303-42de-b92e-1526664e78e5" + "CENTRALUSEUAP:20210219T005452Z:34145096-6f28-467c-9372-7bbf3a75e5e4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:54:52 GMT" + ], "Content-Length": [ - "894" + "906" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,55 +513,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8244/providers/microsoft.eventgrid/topics/sdk-topic-4554\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003\",\r\n \"name\": \"sdk-EventSubscription-8003\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-4001/providers/microsoft.eventgrid/topics/sdk-topic-4\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226\",\r\n \"name\": \"sdk-EventSubscription-9226\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/4EA3764C-E28D-4877-972C-9B5D60113A3D?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNEVBMzc2NEMtRTI4RC00ODc3LTk3MkMtOUI1RDYwMTEzQTNEP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F70D6045-93E5-4A85-8579-2438ECB3A54B?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRjcwRDYwNDUtOTNFNS00QTg1LTg1NzktMjQzOEVDQjNBNTRCP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a5cabe3-b3c1-4f2b-9d4f-2eafa98b0cfd" + "1d3c4ec0-e67b-4c55-bb7c-8b014bae29cf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11959" ], "x-ms-correlation-request-id": [ - "527c44a9-6215-4cc6-a70d-4e1396bfee94" + "769c8e25-e14a-4afa-948a-fafc4409f094" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021353Z:527c44a9-6215-4cc6-a70d-4e1396bfee94" + "CENTRALUSEUAP:20210219T005502Z:769c8e25-e14a-4afa-948a-fafc4409f094" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:02 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,55 +570,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/4EA3764C-E28D-4877-972C-9B5D60113A3D?api-version=2020-06-01\",\r\n \"name\": \"4ea3764c-e28d-4877-972c-9b5d60113a3d\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F70D6045-93E5-4A85-8579-2438ECB3A54B?api-version=2020-10-15-preview\",\r\n \"name\": \"f70d6045-93e5-4a85-8579-2438ecb3a54b\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTgyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODAwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTQwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTIyNj9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:53 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "596d1b9d-c7b9-4cb6-8c1b-623a246de6dc" + "d7d1ae53-2a39-4f06-8f54-5f77c06dc0df" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11958" ], "x-ms-correlation-request-id": [ - "b8db2a89-e76a-4ab7-8d0a-efddaa1a3763" + "47031cd2-2001-4f96-ac32-fd6678b7f9a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021353Z:b8db2a89-e76a-4ab7-8d0a-efddaa1a3763" + "CENTRALUSEUAP:20210219T005502Z:47031cd2-2001-4f96-ac32-fd6678b7f9a7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:02 GMT" + ], "Content-Length": [ - "992" + "1004" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,61 +627,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8244/providers/microsoft.eventgrid/topics/sdk-topic-4554\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003\",\r\n \"name\": \"sdk-EventSubscription-8003\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-4001/providers/microsoft.eventgrid/topics/sdk-topic-4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226\",\r\n \"name\": \"sdk-EventSubscription-9226\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTgyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODAwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTQwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTIyNj9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4daf6444-4333-43d3-bd9a-1a5bff470ca7" + "8b5db766-dc2e-4920-99fc-6d1133f5dd4d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "228441b1-dda6-4f4d-b842-84d2e9030130" + "303ddd50-7720-4bc2-b4fb-225ff474d592" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11957" ], "x-ms-correlation-request-id": [ - "6fa06d4f-64c6-4d4d-8492-05f562beae0f" + "1ca92eda-df69-4d17-bad6-7c2264ffd820" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021359Z:6fa06d4f-64c6-4d4d-8492-05f562beae0f" + "CENTRALUSEUAP:20210219T005507Z:1ca92eda-df69-4d17-bad6-7c2264ffd820" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:07 GMT" + ], "Content-Length": [ - "992" + "1004" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,61 +690,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8244/providers/microsoft.eventgrid/topics/sdk-topic-4554\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003\",\r\n \"name\": \"sdk-EventSubscription-8003\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-4001/providers/microsoft.eventgrid/topics/sdk-topic-4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226\",\r\n \"name\": \"sdk-EventSubscription-9226\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTgyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODAwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTQwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTIyNj9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4cbe86a-02a9-4c68-a0b4-c48d5f628fa6" + "aa2ee43d-9fdf-4d62-834b-c45d7ff086cb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ba83228-ad77-45d9-993d-7a5c222fa2ec" + "09395fcc-c469-4b64-a7c0-32c0ec1c2ade" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11956" ], "x-ms-correlation-request-id": [ - "d02c5c95-6bcb-4116-8426-b1cc95df4944" + "0fa12433-ba36-462c-92f4-795f6524d324" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021359Z:d02c5c95-6bcb-4116-8426-b1cc95df4944" + "CENTRALUSEUAP:20210219T005507Z:0fa12433-ba36-462c-92f4-795f6524d324" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:07 GMT" + ], "Content-Length": [ - "992" + "1004" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,55 +753,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8244/providers/microsoft.eventgrid/topics/sdk-topic-4554\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003\",\r\n \"name\": \"sdk-EventSubscription-8003\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-4001/providers/microsoft.eventgrid/topics/sdk-topic-4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226\",\r\n \"name\": \"sdk-EventSubscription-9226\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTgyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODAwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTQwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTIyNj9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:14:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "34b7361f-03e2-4e74-b833-d3a5667afce3" + "169f5718-82b1-4a64-b6b3-e29db31b732d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11954" ], "x-ms-correlation-request-id": [ - "cb78e28c-3156-4e2d-baee-18abd877b212" + "629f37ac-6158-401d-9838-5a2b71024522" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021409Z:cb78e28c-3156-4e2d-baee-18abd877b212" + "CENTRALUSEUAP:20210219T005519Z:629f37ac-6158-401d-9838-5a2b71024522" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:18 GMT" + ], "Content-Length": [ - "1003" + "1244" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,73 +810,73 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8244/providers/microsoft.eventgrid/topics/sdk-topic-4554\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003\",\r\n \"name\": \"sdk-EventSubscription-8003\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-4001/providers/microsoft.eventgrid/topics/sdk-topic-4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64,\r\n \"deliveryAttributeMappings\": [\r\n {\r\n \"properties\": {\r\n \"value\": \"someValue\",\r\n \"isSecret\": false\r\n },\r\n \"name\": \"StaticDeliveryAttribute1\",\r\n \"type\": \"Static\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sourceField\": \"SomeField\"\r\n },\r\n \"name\": \"DynamicDeliveryAttribute1\",\r\n \"type\": \"Dynamic\"\r\n }\r\n ]\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226\",\r\n \"name\": \"sdk-EventSubscription-9226\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTgyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODAwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTQwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTIyNj9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ]\r\n}", + "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"deliveryAttributeMappings\": [\r\n {\r\n \"type\": \"Static\",\r\n \"properties\": {\r\n \"value\": \"someValue\",\r\n \"isSecret\": false\r\n },\r\n \"name\": \"StaticDeliveryAttribute1\"\r\n },\r\n {\r\n \"type\": \"Dynamic\",\r\n \"properties\": {\r\n \"sourceField\": \"SomeField\"\r\n },\r\n \"name\": \"DynamicDeliveryAttribute1\"\r\n }\r\n ]\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9535efe1-f49c-4fcf-9563-6516831808fd" + "ba28396d-865e-4e5d-9757-bfce6b285e77" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "510" + "943" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:59 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/63867AF2-9BCD-4575-9D81-8875EE489294?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A84F7722-284D-482F-835E-0EDE451BD4DF?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "1d36245e-a920-4cd0-8fbe-59993922e911" + "c94ccd29-a07e-4873-ac1a-b9a8d9562445" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "897" ], "x-ms-correlation-request-id": [ - "97f36913-ffd5-451d-ba49-6d2c438556e5" + "d2ab86b3-9616-4e72-946d-1ea483dfd296" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021359Z:97f36913-ffd5-451d-ba49-6d2c438556e5" + "CENTRALUSEUAP:20210219T005508Z:d2ab86b3-9616-4e72-946d-1ea483dfd296" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:08 GMT" + ], "Content-Length": [ - "1002" + "1243" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,55 +885,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8244/providers/microsoft.eventgrid/topics/sdk-topic-4554\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003\",\r\n \"name\": \"sdk-EventSubscription-8003\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-4001/providers/microsoft.eventgrid/topics/sdk-topic-4\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64,\r\n \"deliveryAttributeMappings\": [\r\n {\r\n \"properties\": {\r\n \"value\": \"someValue\",\r\n \"isSecret\": false\r\n },\r\n \"name\": \"StaticDeliveryAttribute1\",\r\n \"type\": \"Static\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sourceField\": \"SomeField\"\r\n },\r\n \"name\": \"DynamicDeliveryAttribute1\",\r\n \"type\": \"Dynamic\"\r\n }\r\n ]\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226\",\r\n \"name\": \"sdk-EventSubscription-9226\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/63867AF2-9BCD-4575-9D81-8875EE489294?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNjM4NjdBRjItOUJDRC00NTc1LTlEODEtODg3NUVFNDg5Mjk0P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A84F7722-284D-482F-835E-0EDE451BD4DF?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQTg0Rjc3MjItMjg0RC00ODJGLTgzNUUtMEVERTQ1MUJENERGP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:14:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a9affc1-b381-4b6b-bc9b-5572f0ca9304" + "0af1d5be-5d79-4a4b-bb20-35aaa0595940" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11955" ], "x-ms-correlation-request-id": [ - "bae4c99a-95d0-42eb-8783-8500becc4e62" + "e90582f0-2606-401c-ac06-948db0e0c164" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021409Z:bae4c99a-95d0-42eb-8783-8500becc4e62" + "CENTRALUSEUAP:20210219T005518Z:e90582f0-2606-401c-ac06-948db0e0c164" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:18 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -942,61 +942,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/63867AF2-9BCD-4575-9D81-8875EE489294?api-version=2020-06-01\",\r\n \"name\": \"63867af2-9bcd-4575-9d81-8875ee489294\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A84F7722-284D-482F-835E-0EDE451BD4DF?api-version=2020-10-15-preview\",\r\n \"name\": \"a84f7722-284d-482f-835e-0ede451bd4df\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/locations/centraluseuap/eventSubscriptions?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/locations/centraluseuap/eventSubscriptions?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6c89d45-b7b1-4f16-8673-6b5bb19c9383" + "88d73f44-e284-4443-b041-663df88553e6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:14:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "da1a6964-3070-47f9-8d72-13b5f09f2a91" + "2bb52243-3853-48fb-919d-3cb5e2ac9b61" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11953" ], "x-ms-correlation-request-id": [ - "be64a2cb-02ce-41be-a922-a9c420676b46" + "203ac611-a496-4d89-b7e9-f632c79b44e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021410Z:be64a2cb-02ce-41be-a922-a9c420676b46" + "CENTRALUSEUAP:20210219T005519Z:203ac611-a496-4d89-b7e9-f632c79b44e8" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:18 GMT" + ], "Content-Length": [ - "1015" + "1256" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,124 +1005,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8244/providers/microsoft.eventgrid/topics/sdk-topic-4554\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003\",\r\n \"name\": \"sdk-EventSubscription-8003\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-4001/providers/microsoft.eventgrid/topics/sdk-topic-4\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64,\r\n \"deliveryAttributeMappings\": [\r\n {\r\n \"properties\": {\r\n \"value\": \"someValue\",\r\n \"isSecret\": false\r\n },\r\n \"name\": \"StaticDeliveryAttribute1\",\r\n \"type\": \"Static\"\r\n },\r\n {\r\n \"properties\": {\r\n \"sourceField\": \"SomeField\"\r\n },\r\n \"name\": \"DynamicDeliveryAttribute1\",\r\n \"type\": \"Dynamic\"\r\n }\r\n ]\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226\",\r\n \"name\": \"sdk-EventSubscription-9226\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8003?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTgyNDQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00NTU0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODAwMz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9226?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTQwMDEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy00L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tOTIyNj9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "009cd42a-1521-4751-8dcd-aaee5ab70726" + "2af2fea9-26e8-423b-b5b5-9214e3a9bd8a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:14:10 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/5041117E-B3CB-4F05-8078-48B17860373E?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/51597C53-2FF8-48C1-B7D3-09AFDE7E71C0?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/5041117E-B3CB-4F05-8078-48B17860373E?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/51597C53-2FF8-48C1-B7D3-09AFDE7E71C0?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14992" ], "x-ms-request-id": [ - "85106b28-2176-472d-be40-586747b48c63" + "eed238b2-ea8c-4f8d-90d2-37b007df6fe6" ], "x-ms-correlation-request-id": [ - "85106b28-2176-472d-be40-586747b48c63" + "eed238b2-ea8c-4f8d-90d2-37b007df6fe6" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021410Z:85106b28-2176-472d-be40-586747b48c63" + "CENTRALUSEUAP:20210219T005519Z:eed238b2-ea8c-4f8d-90d2-37b007df6fe6" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:55:19 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/5041117E-B3CB-4F05-8078-48B17860373E?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNTA0MTExN0UtQjNDQi00RjA1LTgwNzgtNDhCMTc4NjAzNzNFP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/51597C53-2FF8-48C1-B7D3-09AFDE7E71C0?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNTE1OTdDNTMtMkZGOC00OEMxLUI3RDMtMDlBRkRFN0U3MUMwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:14:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd5fa44f-1362-4f45-aaa1-85896eb6c749" + "4267efbe-ae9b-4374-8f8a-203fab3fc82f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11952" ], "x-ms-correlation-request-id": [ - "d7d3d4c1-9929-4cde-8b7f-c0e4dad29963" + "aacc1951-2f0a-4a78-8af9-54647ff5c9ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021420Z:d7d3d4c1-9929-4cde-8b7f-c0e4dad29963" + "CENTRALUSEUAP:20210219T005530Z:aacc1951-2f0a-4a78-8af9-54647ff5c9ed" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:29 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1131,178 +1131,178 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/5041117E-B3CB-4F05-8078-48B17860373E?api-version=2020-06-01\",\r\n \"name\": \"5041117e-b3cb-4f05-8078-48b17860373e\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/51597C53-2FF8-48C1-B7D3-09AFDE7E71C0?api-version=2020-10-15-preview\",\r\n \"name\": \"51597c53-2ff8-48c1-b7d3-09afde7e71c0\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/5041117E-B3CB-4F05-8078-48B17860373E?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvNTA0MTExN0UtQjNDQi00RjA1LTgwNzgtNDhCMTc4NjAzNzNFP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/51597C53-2FF8-48C1-B7D3-09AFDE7E71C0?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvNTE1OTdDNTMtMkZGOC00OEMxLUI3RDMtMDlBRkRFN0U3MUMwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:14:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d7074f24-1a6b-4e6e-b728-a29ee66f344a" + "cd8865c8-23f5-4496-a54e-8692176eec5b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11951" ], "x-ms-correlation-request-id": [ - "c9b70ca6-2fbb-44db-9250-dc3d3642691a" + "ea88c0a7-2682-4e70-bb90-9b4677038394" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021420Z:c9b70ca6-2fbb-44db-9250-dc3d3642691a" + "CENTRALUSEUAP:20210219T005530Z:ea88c0a7-2682-4e70-bb90-9b4677038394" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:55:29 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8244/providers/Microsoft.EventGrid/topics/sdk-Topic-4554?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODI0NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ1NTQ/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4001/providers/Microsoft.EventGrid/topics/sdk-Topic-4?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNDAwMS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a862627-1ecb-4f66-9df5-23144e03518b" + "2267e070-87af-4d92-aa91-e1b8012858e6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:14:21 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/0C885DD4-F45F-4DBE-852B-16C3C7D630DB?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/AD3CDC78-745F-4C2F-B3FA-B884EA4F5C2F?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/0C885DD4-F45F-4DBE-852B-16C3C7D630DB?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/AD3CDC78-745F-4C2F-B3FA-B884EA4F5C2F?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14991" ], "x-ms-request-id": [ - "a5e449ac-c5fa-4cb8-8712-7ebc5fe0a753" + "9d18b1a0-f6a1-4131-a8a2-4e01f8ca94ea" ], "x-ms-correlation-request-id": [ - "a5e449ac-c5fa-4cb8-8712-7ebc5fe0a753" + "9d18b1a0-f6a1-4131-a8a2-4e01f8ca94ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021421Z:a5e449ac-c5fa-4cb8-8712-7ebc5fe0a753" + "CENTRALUSEUAP:20210219T005530Z:9d18b1a0-f6a1-4131-a8a2-4e01f8ca94ea" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:55:30 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/0C885DD4-F45F-4DBE-852B-16C3C7D630DB?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMEM4ODVERDQtRjQ1Ri00REJFLTg1MkItMTZDM0M3RDYzMERCP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/AD3CDC78-745F-4C2F-B3FA-B884EA4F5C2F?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQUQzQ0RDNzgtNzQ1Ri00QzJGLUIzRkEtQjg4NEVBNEY1QzJGP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:14:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cf3a42f7-f688-4bcd-807c-d4e07f809a82" + "05ca8574-482b-4447-919c-6493e8b9c4bf" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11950" ], "x-ms-correlation-request-id": [ - "822c28d5-92e8-4c70-b44f-873732277c58" + "a1a99cc7-40b0-4a5d-b640-f285f243fcfb" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021431Z:822c28d5-92e8-4c70-b44f-873732277c58" + "CENTRALUSEUAP:20210219T005540Z:a1a99cc7-40b0-4a5d-b640-f285f243fcfb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:55:40 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1311,58 +1311,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/0C885DD4-F45F-4DBE-852B-16C3C7D630DB?api-version=2020-06-01\",\r\n \"name\": \"0c885dd4-f45f-4dbe-852b-16c3c7d630db\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/AD3CDC78-745F-4C2F-B3FA-B884EA4F5C2F?api-version=2020-10-15-preview\",\r\n \"name\": \"ad3cdc78-745f-4c2f-b3fa-b884ea4f5c2f\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/0C885DD4-F45F-4DBE-852B-16C3C7D630DB?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvMEM4ODVERDQtRjQ1Ri00REJFLTg1MkItMTZDM0M3RDYzMERCP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/AD3CDC78-745F-4C2F-B3FA-B884EA4F5C2F?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvQUQzQ0RDNzgtNzQ1Ri00QzJGLUIzRkEtQjg4NEVBNEY1QzJGP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:14:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5ec7e5ab-524e-42f5-a74e-710710c61da6" + "530b7c47-1a27-4e87-b5eb-0777b6805a51" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11949" ], "x-ms-correlation-request-id": [ - "4485aa17-b4e4-471b-bdc2-017bff326058" + "455983ac-a88d-4420-b61e-6e7d057bc625" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021431Z:4485aa17-b4e4-471b-bdc2-017bff326058" + "CENTRALUSEUAP:20210219T005540Z:455983ac-a88d-4420-b61e-6e7d057bc625" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:55:40 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1371,9 +1371,9 @@ ], "Names": { "EventSubscriptionToCustomTopicCreateGetUpdateDelete": [ - "sdk-EventGrid-RG-8244", - "sdk-Topic-4554", - "sdk-EventSubscription-8003" + "sdk-EventGrid-RG-4001", + "sdk-Topic-4", + "sdk-EventSubscription-9226" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToCustomTopicCreateGetUpdateDeleteWithEventDeliverySchema.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToCustomTopicCreateGetUpdateDeleteWithEventDeliverySchema.json index c42895ac3280..633f101b3a8b 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToCustomTopicCreateGetUpdateDeleteWithEventDeliverySchema.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToCustomTopicCreateGetUpdateDeleteWithEventDeliverySchema.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ca231f1-9942-4556-ab13-f4d22b74c1fa" + "a7bd3227-3be8-4ba7-9811-5dc01a3bb2e3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:11 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11976" ], "x-ms-request-id": [ - "119dbc7e-7fdd-40d1-bca0-fa6fdfaf7e12" + "dbfd3a6c-01f8-4c3d-9ff8-a1af984dccb6" ], "x-ms-correlation-request-id": [ - "119dbc7e-7fdd-40d1-bca0-fa6fdfaf7e12" + "dbfd3a6c-01f8-4c3d-9ff8-a1af984dccb6" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021212Z:119dbc7e-7fdd-40d1-bca0-fa6fdfaf7e12" + "CENTRALUSEUAP:20210219T005227Z:dbfd3a6c-01f8-4c3d-9ff8-a1af984dccb6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "40780" + "Date": [ + "Fri, 19 Feb 2021 00:52:26 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "43627" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7708\",\r\n \"name\": \"sdk-EventGrid-RG-7708\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-516\",\r\n \"name\": \"sdk-EventGrid-RG-516\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1724\",\r\n \"name\": \"RGName-ps1724\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242\",\r\n \"name\": \"RGName-ps1242\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2627\",\r\n \"name\": \"RGName-ps2627\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2205\",\r\n \"name\": \"RGName-ps2205\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3309\",\r\n \"name\": \"RGName-ps3309\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5822\",\r\n \"name\": \"RGName-ps5822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9506\",\r\n \"name\": \"RGName-ps9506\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2751\",\r\n \"name\": \"sdk-EventGrid-RG-2751\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1\",\r\n \"name\": \"testRg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg\",\r\n \"name\": \"mparkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkrg\",\r\n \"name\": \"vkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"name\": \"MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi\",\r\n \"name\": \"msi\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain\",\r\n \"name\": \"msidomain\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishptestvm_group\",\r\n \"name\": \"kishptestvm_group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829\",\r\n \"name\": \"sdk-EventGrid-RG-1829\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1822\",\r\n \"name\": \"sdk-EventGrid-RG-1822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RgWithPolicyZRestrictions\",\r\n \"name\": \"RgWithPolicyZRestrictions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/crptestps1147\",\r\n \"name\": \"crptestps1147\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2\",\r\n \"name\": \"PartnerRg2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1\",\r\n \"name\": \"PartnerRg1\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"name\": \"clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:51:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"name\": \"clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:56:49Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"name\": \"clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T10:02:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"name\": \"clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T20:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7867\",\r\n \"name\": \"RGName-ps7867\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1794\",\r\n \"name\": \"RGName-ps1794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4072\",\r\n \"name\": \"RGName-ps4072\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-9171?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTE3MT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-510?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTEwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1b8b937-c556-4499-97bb-c7109d25f40e" + "36400aee-1258-4c05-9581-d61686a0fe1e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:13 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "a51e74c2-ac20-40ba-bc16-24f62a7d3350" + "d702363a-e0be-4b14-bf53-a3a3d7af8edd" ], "x-ms-correlation-request-id": [ - "a51e74c2-ac20-40ba-bc16-24f62a7d3350" + "d702363a-e0be-4b14-bf53-a3a3d7af8edd" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021213Z:a51e74c2-ac20-40ba-bc16-24f62a7d3350" + "CENTRALUSEUAP:20210219T005227Z:d702363a-e0be-4b14-bf53-a3a3d7af8edd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:26 GMT" + ], "Content-Length": [ - "202" + "200" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171\",\r\n \"name\": \"sdk-EventGrid-RG-9171\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510\",\r\n \"name\": \"sdk-EventGrid-RG-510\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTE3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTgwMDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtNDg5NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3aea6ed7-e2c2-45a5-8d0e-e6e02fe1ae0c" + "86a34398-9e3e-4508-8ba5-4a2a91acda08" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:16 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/75CDD197-CCB4-4E39-8596-F8CD25F55F0E?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/02DF4820-B2F0-4CAA-AB59-3BD227FA93A4?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "f9ded67e-74dc-4d31-a6dc-6f4bd6b166a1" + "9db205ff-4f44-4246-ad97-425df9b6874a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "096a9bc7-aab5-45a7-ba3a-39061a3e746f" + "ba6598e5-3943-4dcf-b4c3-afa898663ba6" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021216Z:096a9bc7-aab5-45a7-ba3a-39061a3e746f" + "CENTRALUSEUAP:20210219T005228Z:ba6598e5-3943-4dcf-b4c3-afa898663ba6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:28 GMT" + ], "Content-Length": [ - "339" + "338" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,55 +198,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001\",\r\n \"name\": \"sdk-Topic-8001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895\",\r\n \"name\": \"sdk-Topic-4895\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/75CDD197-CCB4-4E39-8596-F8CD25F55F0E?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNzVDREQxOTctQ0NCNC00RTM5LTg1OTYtRjhDRDI1RjU1RjBFP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/02DF4820-B2F0-4CAA-AB59-3BD227FA93A4?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMDJERjQ4MjAtQjJGMC00Q0FBLUFCNTktM0JEMjI3RkE5M0E0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8c87bc50-99fd-4e84-8f28-11e4bc8d12d4" + "97535ca5-038c-4e55-a16a-5dc737240fdc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11973" ], "x-ms-correlation-request-id": [ - "bf7e2918-d3ce-494a-9c7e-abdf669deb93" + "924107fb-7cc5-4e79-83f0-c783e5a0a2b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021227Z:bf7e2918-d3ce-494a-9c7e-abdf669deb93" + "CENTRALUSEUAP:20210219T005239Z:924107fb-7cc5-4e79-83f0-c783e5a0a2b6" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:38 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,55 +255,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/75CDD197-CCB4-4E39-8596-F8CD25F55F0E?api-version=2020-06-01\",\r\n \"name\": \"75cdd197-ccb4-4e39-8596-f8cd25f55f0e\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/02DF4820-B2F0-4CAA-AB59-3BD227FA93A4?api-version=2020-10-15-preview\",\r\n \"name\": \"02df4820-b2f0-4caa-ab59-3bd227fa93a4\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTE3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTgwMDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtNDg5NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "f9d9f249-2b9f-4c6c-a325-81d40c131a8e" + "73d29140-73a5-472e-bdbf-adf0ba332357" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11972" ], "x-ms-correlation-request-id": [ - "495c1bcd-ec64-4c36-95cc-b804dd84436b" + "76e4d9fa-6564-442d-bea7-8846948fec32" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021227Z:495c1bcd-ec64-4c36-95cc-b804dd84436b" + "CENTRALUSEUAP:20210219T005239Z:76e4d9fa-6564-442d-bea7-8846948fec32" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:38 GMT" + ], "Content-Length": [ - "529" + "566" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,61 +312,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8001.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8b1c4169-6fc6-4265-bebb-3d87b53731b2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001\",\r\n \"name\": \"sdk-Topic-8001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4895.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3818df7c-4025-46ae-af34-1aed5361b716\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895\",\r\n \"name\": \"sdk-Topic-4895\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTE3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTgwMDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtNDg5NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e38aedcf-74da-4088-a003-f4385b83b4e7" + "83a69491-5fc9-46e0-9bed-849497c2ebfa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11cc5453-03c9-4e7d-8dd9-93de329e2d56" + "272185fd-5a92-43b4-a6c6-aab7917ba1da" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11971" ], "x-ms-correlation-request-id": [ - "a0f567f8-7cd4-4cf3-87f0-10adccd85660" + "e860bfa3-e522-4067-bb7b-ed59a8a38c33" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021232Z:a0f567f8-7cd4-4cf3-87f0-10adccd85660" + "CENTRALUSEUAP:20210219T005244Z:e860bfa3-e522-4067-bb7b-ed59a8a38c33" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:44 GMT" + ], "Content-Length": [ - "529" + "566" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,61 +375,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8001.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8b1c4169-6fc6-4265-bebb-3d87b53731b2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001\",\r\n \"name\": \"sdk-Topic-8001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4895.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3818df7c-4025-46ae-af34-1aed5361b716\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895\",\r\n \"name\": \"sdk-Topic-4895\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTE3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTgwMDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtNDg5NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c3a29bd-4587-462f-8295-eb295a1a2f18" + "8e28eada-c5b3-45fb-8c36-0f00c58542ca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c78d53a9-cb86-4ef4-a0c7-f7bc6874463c" + "c09a2792-8fb9-4587-b3c1-372dec4fc2c0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11970" ], "x-ms-correlation-request-id": [ - "a62c9b5f-e6cd-4d47-821d-685aea6c0b4c" + "7a66e5be-cffb-4f25-9046-8a1daed247b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021232Z:a62c9b5f-e6cd-4d47-821d-685aea6c0b4c" + "CENTRALUSEUAP:20210219T005244Z:7a66e5be-cffb-4f25-9046-8a1daed247b9" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:44 GMT" + ], "Content-Length": [ - "529" + "566" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,26 +438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8001.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8b1c4169-6fc6-4265-bebb-3d87b53731b2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001\",\r\n \"name\": \"sdk-Topic-8001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4895.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3818df7c-4025-46ae-af34-1aed5361b716\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895\",\r\n \"name\": \"sdk-Topic-4895\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy04MDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjM4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi02NzcxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 1000,\r\n \"preferredBatchSizeInKilobytes\": 1000,\r\n \"azureActiveDirectoryTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"azureActiveDirectoryApplicationIdOrUri\": \"03d47d4a-7c50-43e0-ba90-89d090cc4582\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "aa742da8-c9f2-464e-ac38-d670697841bb" + "31a8a5bd-e38e-47b6-8028-df3eec9bb1d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -470,41 +470,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:31 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/842F3808-4367-4634-B00A-0FA20D520155?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B7214C32-A14C-42FA-AEF7-BA1720EC5CB8?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "d041d0d1-f8a5-4d2e-a904-c52ee548c2df" + "0ae8f4a7-b65b-427e-8843-abc3f3fb2802" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "899" + "897" ], "x-ms-correlation-request-id": [ - "f0b52e30-dfdf-4794-88c4-c07dcbc8a6f4" + "98c62897-5f78-4c5b-bcca-7f344f3579e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021232Z:f0b52e30-dfdf-4794-88c4-c07dcbc8a6f4" + "CENTRALUSEUAP:20210219T005245Z:98c62897-5f78-4c5b-bcca-7f344f3579e0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:45 GMT" + ], "Content-Length": [ - "1106" + "1122" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,55 +513,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9171/providers/microsoft.eventgrid/topics/sdk-topic-8001\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1000,\r\n \"preferredBatchSizeInKilobytes\": 1000,\r\n \"azureActiveDirectoryTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"azureActiveDirectoryApplicationIdOrUri\": \"03d47d4a-7c50-43e0-ba90-89d090cc4582\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387\",\r\n \"name\": \"sdk-EventSubscription-2387\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-510/providers/microsoft.eventgrid/topics/sdk-topic-4895\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1000,\r\n \"preferredBatchSizeInKilobytes\": 1000,\r\n \"azureActiveDirectoryTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"azureActiveDirectoryApplicationIdOrUri\": \"03d47d4a-7c50-43e0-ba90-89d090cc4582\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771\",\r\n \"name\": \"sdk-EventSubscription-6771\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/842F3808-4367-4634-B00A-0FA20D520155?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvODQyRjM4MDgtNDM2Ny00NjM0LUIwMEEtMEZBMjBENTIwMTU1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B7214C32-A14C-42FA-AEF7-BA1720EC5CB8?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQjcyMTRDMzItQTE0Qy00MkZBLUFFRjctQkExNzIwRUM1Q0I4P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "77b8daf5-e5fd-4ae6-a8b3-61fda4e7ba0b" + "11b6f334-b3d7-4b48-b763-cbbe4ae747c2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11969" ], "x-ms-correlation-request-id": [ - "746cf9da-eaf4-40d6-b847-ec794f70d635" + "90a389c2-5864-4f2d-9cb8-4e8b20297ece" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021242Z:746cf9da-eaf4-40d6-b847-ec794f70d635" + "CENTRALUSEUAP:20210219T005255Z:90a389c2-5864-4f2d-9cb8-4e8b20297ece" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:55 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,55 +570,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/842F3808-4367-4634-B00A-0FA20D520155?api-version=2020-06-01\",\r\n \"name\": \"842f3808-4367-4634-b00a-0fa20d520155\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B7214C32-A14C-42FA-AEF7-BA1720EC5CB8?api-version=2020-10-15-preview\",\r\n \"name\": \"b7214c32-a14c-42fa-aef7-ba1720ec5cb8\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy04MDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjM4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi02NzcxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:43 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "848d6fad-01a4-4565-a157-b2f68845eb95" + "2113051b-0afc-401e-8ffc-a5963af886b1" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11968" ], "x-ms-correlation-request-id": [ - "2e9fd605-d194-4897-a52c-32baa4ac03b8" + "d2fb909a-a9cb-4e4c-9456-1ad7050bc6b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021243Z:2e9fd605-d194-4897-a52c-32baa4ac03b8" + "CENTRALUSEUAP:20210219T005256Z:d2fb909a-a9cb-4e4c-9456-1ad7050bc6b0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:52:55 GMT" + ], "Content-Length": [ - "1147" + "1163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,61 +627,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9171/providers/microsoft.eventgrid/topics/sdk-topic-8001\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1000,\r\n \"preferredBatchSizeInKilobytes\": 1000,\r\n \"azureActiveDirectoryTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"azureActiveDirectoryApplicationIdOrUri\": \"03d47d4a-7c50-43e0-ba90-89d090cc4582\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387\",\r\n \"name\": \"sdk-EventSubscription-2387\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-510/providers/microsoft.eventgrid/topics/sdk-topic-4895\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1000,\r\n \"preferredBatchSizeInKilobytes\": 1000,\r\n \"azureActiveDirectoryTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"azureActiveDirectoryApplicationIdOrUri\": \"03d47d4a-7c50-43e0-ba90-89d090cc4582\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771\",\r\n \"name\": \"sdk-EventSubscription-6771\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy04MDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjM4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi02NzcxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f20fd72-3c72-48d1-9c32-62d8ec207fc3" + "39bd714f-76e1-4ea0-84ee-c2888135b619" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "881f02dc-5a49-4b68-93c2-5dba5b712a2e" + "7b22ce90-f011-4cba-900c-7a4652cebe69" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11967" ], "x-ms-correlation-request-id": [ - "b4aebabd-576a-47ee-85e3-75a1e7b756cc" + "14ec18c5-4ed4-4af9-a3ac-e97ba551fc6f" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021248Z:b4aebabd-576a-47ee-85e3-75a1e7b756cc" + "CENTRALUSEUAP:20210219T005301Z:14ec18c5-4ed4-4af9-a3ac-e97ba551fc6f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:00 GMT" + ], "Content-Length": [ - "1147" + "1163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,61 +690,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9171/providers/microsoft.eventgrid/topics/sdk-topic-8001\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1000,\r\n \"preferredBatchSizeInKilobytes\": 1000,\r\n \"azureActiveDirectoryTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"azureActiveDirectoryApplicationIdOrUri\": \"03d47d4a-7c50-43e0-ba90-89d090cc4582\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387\",\r\n \"name\": \"sdk-EventSubscription-2387\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-510/providers/microsoft.eventgrid/topics/sdk-topic-4895\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1000,\r\n \"preferredBatchSizeInKilobytes\": 1000,\r\n \"azureActiveDirectoryTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"azureActiveDirectoryApplicationIdOrUri\": \"03d47d4a-7c50-43e0-ba90-89d090cc4582\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771\",\r\n \"name\": \"sdk-EventSubscription-6771\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy04MDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjM4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi02NzcxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59b1e9a7-77c0-493c-a4b8-62252104f613" + "4bb0bd43-af9a-409e-81dc-35bb00c275d5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:48 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2ae02d8b-5e80-45ec-bb72-f4b544e7af16" + "dc82a351-7140-4ab9-bbbc-39489824ed85" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11966" ], "x-ms-correlation-request-id": [ - "f4e93dcc-f9ad-406d-bdee-6eedbf5605d1" + "4b890365-e3d5-4ce9-8f8e-8562fbdd90ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021248Z:f4e93dcc-f9ad-406d-bdee-6eedbf5605d1" + "CENTRALUSEUAP:20210219T005301Z:4b890365-e3d5-4ce9-8f8e-8562fbdd90ef" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:00 GMT" + ], "Content-Length": [ - "1147" + "1163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,55 +753,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9171/providers/microsoft.eventgrid/topics/sdk-topic-8001\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1000,\r\n \"preferredBatchSizeInKilobytes\": 1000,\r\n \"azureActiveDirectoryTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"azureActiveDirectoryApplicationIdOrUri\": \"03d47d4a-7c50-43e0-ba90-89d090cc4582\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387\",\r\n \"name\": \"sdk-EventSubscription-2387\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-510/providers/microsoft.eventgrid/topics/sdk-topic-4895\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1000,\r\n \"preferredBatchSizeInKilobytes\": 1000,\r\n \"azureActiveDirectoryTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"azureActiveDirectoryApplicationIdOrUri\": \"03d47d4a-7c50-43e0-ba90-89d090cc4582\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771\",\r\n \"name\": \"sdk-EventSubscription-6771\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy04MDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjM4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi02NzcxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "df6c7bad-fb28-4968-888c-424135e6ad50" + "4902b07e-1865-4bc5-8039-7d4506171ec0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11964" ], "x-ms-correlation-request-id": [ - "5229ad69-371d-4c48-875d-dc95e68a65e2" + "b97a711f-d813-4418-a8b3-47c74e142726" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021258Z:5229ad69-371d-4c48-875d-dc95e68a65e2" + "CENTRALUSEUAP:20210219T005312Z:b97a711f-d813-4418-a8b3-47c74e142726" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:12 GMT" + ], "Content-Length": [ - "1007" + "1023" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,26 +810,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9171/providers/microsoft.eventgrid/topics/sdk-topic-8001\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 4400,\r\n \"preferredBatchSizeInKilobytes\": 900\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387\",\r\n \"name\": \"sdk-EventSubscription-2387\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-510/providers/microsoft.eventgrid/topics/sdk-topic-4895\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 4400,\r\n \"preferredBatchSizeInKilobytes\": 900\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771\",\r\n \"name\": \"sdk-EventSubscription-6771\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy04MDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjM4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi02NzcxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\",\r\n \"maxEventsPerBatch\": 4400,\r\n \"preferredBatchSizeInKilobytes\": 900\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "73d597ad-f038-49f1-b7b6-6be56d8340a8" + "4d523bdb-b379-473f-b657-9c8c706b72d0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -842,41 +842,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:48 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/61224A07-F86A-4D2F-AC7F-72D19094A7FB?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A153D17D-A26E-4857-BC62-D7CDF63E59F5?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "64949009-1d01-4748-9a71-4860c5056b2c" + "83210858-63cb-4e09-b14c-c56cdcf2665e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "896" ], "x-ms-correlation-request-id": [ - "880217d8-12c5-4957-8862-9b20730094cf" + "5e190a06-fbc2-4bd3-947f-9494e0ecf12f" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021248Z:880217d8-12c5-4957-8862-9b20730094cf" + "CENTRALUSEUAP:20210219T005302Z:5e190a06-fbc2-4bd3-947f-9494e0ecf12f" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:02 GMT" + ], "Content-Length": [ - "1006" + "1022" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,55 +885,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9171/providers/microsoft.eventgrid/topics/sdk-topic-8001\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 4400,\r\n \"preferredBatchSizeInKilobytes\": 900\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387\",\r\n \"name\": \"sdk-EventSubscription-2387\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-510/providers/microsoft.eventgrid/topics/sdk-topic-4895\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 4400,\r\n \"preferredBatchSizeInKilobytes\": 900\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771\",\r\n \"name\": \"sdk-EventSubscription-6771\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/61224A07-F86A-4D2F-AC7F-72D19094A7FB?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNjEyMjRBMDctRjg2QS00RDJGLUFDN0YtNzJEMTkwOTRBN0ZCP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A153D17D-A26E-4857-BC62-D7CDF63E59F5?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQTE1M0QxN0QtQTI2RS00ODU3LUJDNjItRDdDREY2M0U1OUY1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "773729a6-55b8-4591-b646-2b0ab3e3fbb4" + "1c2c0fbd-78d3-4a18-8305-1c012944589b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11965" ], "x-ms-correlation-request-id": [ - "0dedc58d-c8fc-44f7-8968-4c5a3448c7b2" + "d8c17ed4-ebe7-41bf-aae1-9ed43bd10396" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021258Z:0dedc58d-c8fc-44f7-8968-4c5a3448c7b2" + "CENTRALUSEUAP:20210219T005312Z:d8c17ed4-ebe7-41bf-aae1-9ed43bd10396" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:12 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -942,61 +942,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/61224A07-F86A-4D2F-AC7F-72D19094A7FB?api-version=2020-06-01\",\r\n \"name\": \"61224a07-f86a-4d2f-ac7f-72d19094a7fb\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A153D17D-A26E-4857-BC62-D7CDF63E59F5?api-version=2020-10-15-preview\",\r\n \"name\": \"a153d17d-a26e-4857-bc62-d7cdf63e59f5\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/locations/centraluseuap/eventSubscriptions?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTE3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/locations/centraluseuap/eventSubscriptions?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7793a7c-5e29-4cd7-b47c-42d9b58a8909" + "c8486054-bbc8-4ebe-9306-13c9659f0472" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:58 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a9ec190e-5bad-4c93-8edd-ad7d4a8e632d" + "868eb762-139a-412d-9269-9fd34aa3eac0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11963" ], "x-ms-correlation-request-id": [ - "a27a810c-8914-49e3-8537-2c1d08b507f4" + "1a37c1a1-ba1a-455b-ba25-e1984efb15e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021259Z:a27a810c-8914-49e3-8537-2c1d08b507f4" + "CENTRALUSEUAP:20210219T005312Z:1a37c1a1-ba1a-455b-ba25-e1984efb15e0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:12 GMT" + ], "Content-Length": [ - "1019" + "1035" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1005,124 +1005,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-9171/providers/microsoft.eventgrid/topics/sdk-topic-8001\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 4400,\r\n \"preferredBatchSizeInKilobytes\": 900\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387\",\r\n \"name\": \"sdk-EventSubscription-2387\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-510/providers/microsoft.eventgrid/topics/sdk-topic-4895\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 4400,\r\n \"preferredBatchSizeInKilobytes\": 900\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771\",\r\n \"name\": \"sdk-EventSubscription-6771\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-2387?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTkxNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvdG9waWNzL3Nkay1Ub3BpYy04MDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tMjM4Nz9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6771?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTUxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ4OTUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi02NzcxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0cd5141-0e37-4752-81e5-e883167eda1b" + "0a4cc58d-faa1-4530-b292-1f2b6655e5e7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:12:59 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/DCE04298-C6C7-4EBC-9EDF-914EF75203B3?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/A31A0212-FDEC-43CD-8835-C5C559ACCCD0?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DCE04298-C6C7-4EBC-9EDF-914EF75203B3?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A31A0212-FDEC-43CD-8835-C5C559ACCCD0?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14992" ], "x-ms-request-id": [ - "982b20f9-904e-4a5c-a5a9-6862cbb8da51" + "a2f86aa9-d2b4-45e7-a4c8-811cbe07fc9e" ], "x-ms-correlation-request-id": [ - "982b20f9-904e-4a5c-a5a9-6862cbb8da51" + "a2f86aa9-d2b4-45e7-a4c8-811cbe07fc9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021259Z:982b20f9-904e-4a5c-a5a9-6862cbb8da51" + "CENTRALUSEUAP:20210219T005313Z:a2f86aa9-d2b4-45e7-a4c8-811cbe07fc9e" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:53:13 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DCE04298-C6C7-4EBC-9EDF-914EF75203B3?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRENFMDQyOTgtQzZDNy00RUJDLTlFREYtOTE0RUY3NTIwM0IzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A31A0212-FDEC-43CD-8835-C5C559ACCCD0?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQTMxQTAyMTItRkRFQy00M0NELTg4MzUtQzVDNTU5QUNDQ0QwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "19b9636c-35e0-4a69-81e7-981a41e64511" + "434b5667-15df-4446-91ae-56da337f2da6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11962" ], "x-ms-correlation-request-id": [ - "4c7c367f-f5c7-421c-a843-e4cd1aa435d3" + "b3f2d7f6-5cba-4957-8307-d557ea5a2104" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021309Z:4c7c367f-f5c7-421c-a843-e4cd1aa435d3" + "CENTRALUSEUAP:20210219T005323Z:b3f2d7f6-5cba-4957-8307-d557ea5a2104" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:23 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1131,178 +1131,178 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DCE04298-C6C7-4EBC-9EDF-914EF75203B3?api-version=2020-06-01\",\r\n \"name\": \"dce04298-c6c7-4ebc-9edf-914ef75203b3\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A31A0212-FDEC-43CD-8835-C5C559ACCCD0?api-version=2020-10-15-preview\",\r\n \"name\": \"a31a0212-fdec-43cd-8835-c5c559acccd0\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/DCE04298-C6C7-4EBC-9EDF-914EF75203B3?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvRENFMDQyOTgtQzZDNy00RUJDLTlFREYtOTE0RUY3NTIwM0IzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/A31A0212-FDEC-43CD-8835-C5C559ACCCD0?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvQTMxQTAyMTItRkRFQy00M0NELTg4MzUtQzVDNTU5QUNDQ0QwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3b969874-c92d-4482-8cfa-1be6a9fda6a7" + "1271f3bf-4863-45e8-bd7e-9dac3d5aab62" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11961" ], "x-ms-correlation-request-id": [ - "3b4512ac-a429-4fe7-9688-acdf4ad07ecf" + "6216cada-186b-42df-b692-217997e901bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021309Z:3b4512ac-a429-4fe7-9688-acdf4ad07ecf" + "CENTRALUSEUAP:20210219T005323Z:6216cada-186b-42df-b692-217997e901bb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:53:23 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9171/providers/Microsoft.EventGrid/topics/sdk-Topic-8001?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctOTE3MS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTgwMDE/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-510/providers/Microsoft.EventGrid/topics/sdk-Topic-4895?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcy9zZGstVG9waWMtNDg5NT9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03a5444e-8d50-407b-9433-13e46ea57fbb" + "81954896-9913-4157-93ca-35646f616487" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:10 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/4455536E-56EB-4487-B948-74F898B407CD?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/C8E7FD77-C8CE-42AB-AF10-0D3386258454?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/4455536E-56EB-4487-B948-74F898B407CD?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/C8E7FD77-C8CE-42AB-AF10-0D3386258454?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14991" ], "x-ms-request-id": [ - "10823dec-3052-41ee-8f3c-1b0b68ceda13" + "af744af1-67e3-4642-9028-5545088d5df4" ], "x-ms-correlation-request-id": [ - "10823dec-3052-41ee-8f3c-1b0b68ceda13" + "af744af1-67e3-4642-9028-5545088d5df4" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021310Z:10823dec-3052-41ee-8f3c-1b0b68ceda13" + "CENTRALUSEUAP:20210219T005324Z:af744af1-67e3-4642-9028-5545088d5df4" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:53:23 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/4455536E-56EB-4487-B948-74F898B407CD?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDQ1NTUzNkUtNTZFQi00NDg3LUI5NDgtNzRGODk4QjQwN0NEP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/C8E7FD77-C8CE-42AB-AF10-0D3386258454?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQzhFN0ZENzctQzhDRS00MkFCLUFGMTAtMEQzMzg2MjU4NDU0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e529c6c-f89e-4161-97af-54bdb18629e8" + "7fce3a23-dee7-4435-9763-845faa8bb7bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11960" ], "x-ms-correlation-request-id": [ - "0d867139-4551-471e-b2b8-08a52e8c4091" + "c2e48652-5a65-4c79-96f4-a04a85d48988" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021320Z:0d867139-4551-471e-b2b8-08a52e8c4091" + "CENTRALUSEUAP:20210219T005334Z:c2e48652-5a65-4c79-96f4-a04a85d48988" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:53:33 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1311,58 +1311,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/4455536E-56EB-4487-B948-74F898B407CD?api-version=2020-06-01\",\r\n \"name\": \"4455536e-56eb-4487-b948-74f898b407cd\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/C8E7FD77-C8CE-42AB-AF10-0D3386258454?api-version=2020-10-15-preview\",\r\n \"name\": \"c8e7fd77-c8ce-42ab-af10-0d3386258454\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/4455536E-56EB-4487-B948-74F898B407CD?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvNDQ1NTUzNkUtNTZFQi00NDg3LUI5NDgtNzRGODk4QjQwN0NEP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/C8E7FD77-C8CE-42AB-AF10-0D3386258454?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvQzhFN0ZENzctQzhDRS00MkFCLUFGMTAtMEQzMzg2MjU4NDU0P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:13:20 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1fb5a850-d735-4c3e-81be-88ddf5dc8282" + "0b65af16-5ea7-43ff-9195-5510d93cd327" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11959" ], "x-ms-correlation-request-id": [ - "603b0dd6-ddd9-41b3-a926-09da19b319b4" + "17b2dd4c-9368-477c-82a9-99a8c690b22d" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T021320Z:603b0dd6-ddd9-41b3-a926-09da19b319b4" + "CENTRALUSEUAP:20210219T005334Z:17b2dd4c-9368-477c-82a9-99a8c690b22d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:53:33 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1371,9 +1371,9 @@ ], "Names": { "EventSubscriptionToCustomTopicCreateGetUpdateDeleteWithEventDeliverySchema": [ - "sdk-EventGrid-RG-9171", - "sdk-Topic-8001", - "sdk-EventSubscription-2387" + "sdk-EventGrid-RG-510", + "sdk-Topic-4895", + "sdk-EventSubscription-6771" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToDomainCreateGetUpdateDelete.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToDomainCreateGetUpdateDelete.json index c85a077e5c58..1d3f87db0d7d 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToDomainCreateGetUpdateDelete.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToDomainCreateGetUpdateDelete.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "813c73a6-6fa2-46fa-b74b-5a0d2a1b09a3" + "8569d9eb-2968-4a0c-bae6-a2c6dcac1411" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,23 +23,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:05 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11986" ], "x-ms-request-id": [ - "6b66fef5-c909-49b1-a751-166fb4889c95" + "23e3e639-7512-49ec-a72c-c2651f13c8d9" ], "x-ms-correlation-request-id": [ - "6b66fef5-c909-49b1-a751-166fb4889c95" + "23e3e639-7512-49ec-a72c-c2651f13c8d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020706Z:6b66fef5-c909-49b1-a751-166fb4889c95" + "CENTRALUSEUAP:20210219T004805Z:23e3e639-7512-49ec-a72c-c2651f13c8d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "40580" + "Date": [ + "Fri, 19 Feb 2021 00:48:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "43627" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7708\",\r\n \"name\": \"sdk-EventGrid-RG-7708\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1724\",\r\n \"name\": \"RGName-ps1724\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242\",\r\n \"name\": \"RGName-ps1242\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2627\",\r\n \"name\": \"RGName-ps2627\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2205\",\r\n \"name\": \"RGName-ps2205\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3309\",\r\n \"name\": \"RGName-ps3309\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5822\",\r\n \"name\": \"RGName-ps5822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9506\",\r\n \"name\": \"RGName-ps9506\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2751\",\r\n \"name\": \"sdk-EventGrid-RG-2751\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1\",\r\n \"name\": \"testRg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg\",\r\n \"name\": \"mparkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkrg\",\r\n \"name\": \"vkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"name\": \"MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi\",\r\n \"name\": \"msi\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain\",\r\n \"name\": \"msidomain\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishptestvm_group\",\r\n \"name\": \"kishptestvm_group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829\",\r\n \"name\": \"sdk-EventGrid-RG-1829\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2190\",\r\n \"name\": \"sdk-EventGrid-RG-2190\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RgWithPolicyZRestrictions\",\r\n \"name\": \"RgWithPolicyZRestrictions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/crptestps1147\",\r\n \"name\": \"crptestps1147\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2\",\r\n \"name\": \"PartnerRg2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1\",\r\n \"name\": \"PartnerRg1\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"name\": \"clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:51:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"name\": \"clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:56:49Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"name\": \"clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T10:02:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"name\": \"clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T20:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7867\",\r\n \"name\": \"RGName-ps7867\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1794\",\r\n \"name\": \"RGName-ps1794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4072\",\r\n \"name\": \"RGName-ps4072\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-1206?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTIwNj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-738?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNzM4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d7efeffc-f36b-4f08-9589-533f1a5f67fc" + "0c410800-7afd-4657-b9bd-f8c6799df06a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,23 +89,20 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:06 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "60e2d862-bfdb-4566-9a46-855490af6d75" + "40377486-8255-43eb-9240-51998727493f" ], "x-ms-correlation-request-id": [ - "60e2d862-bfdb-4566-9a46-855490af6d75" + "40377486-8255-43eb-9240-51998727493f" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020707Z:60e2d862-bfdb-4566-9a46-855490af6d75" + "CENTRALUSEUAP:20210219T004805Z:40377486-8255-43eb-9240-51998727493f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,8 +110,11 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:05 GMT" + ], "Content-Length": [ - "202" + "200" ], "Content-Type": [ "application/json; charset=utf-8" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206\",\r\n \"name\": \"sdk-EventGrid-RG-1206\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738\",\r\n \"name\": \"sdk-EventGrid-RG-738\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tODAyND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvc2RrLURvbWFpbi03NTA/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2ca16d80-bb5c-4f88-8a11-6d69a5967e37" + "7d6c2b15-6c97-4fb6-b732-0d4c7ecf3fd2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:10 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/049A018F-E8BA-4FA7-AE68-446F10AD8CC1?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/41ECACA4-7AC1-4EAB-9A38-5DFA77848070?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "c389ec7d-eef4-46c0-9566-52a5cec7ec21" + "f40acf25-236e-41e1-a6de-915b71d889af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "0812c464-f426-4246-a7c3-d654cc04ebce" + "dc88d90e-2175-437e-9a30-deaff0d8eb06" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020710Z:0812c464-f426-4246-a7c3-d654cc04ebce" + "CENTRALUSEUAP:20210219T004807Z:dc88d90e-2175-437e-9a30-deaff0d8eb06" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:06 GMT" + ], "Content-Length": [ - "343" + "340" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,55 +198,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024\",\r\n \"name\": \"sdk-Domain-8024\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750\",\r\n \"name\": \"sdk-Domain-750\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/049A018F-E8BA-4FA7-AE68-446F10AD8CC1?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMDQ5QTAxOEYtRThCQS00RkE3LUFFNjgtNDQ2RjEwQUQ4Q0MxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/41ECACA4-7AC1-4EAB-9A38-5DFA77848070?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDFFQ0FDQTQtN0FDMS00RUFCLTlBMzgtNURGQTc3ODQ4MDcwP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ce9d0ee5-016b-42c3-afbb-78397406b3f6" + "66890b34-c911-4e63-9703-f6da7937fa2f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11972" ], "x-ms-correlation-request-id": [ - "1b6a6e51-10ce-4fd7-9280-85cd8c311db0" + "ee37239d-a046-411f-8813-2d4da743207c" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020721Z:1b6a6e51-10ce-4fd7-9280-85cd8c311db0" + "CENTRALUSEUAP:20210219T004817Z:ee37239d-a046-411f-8813-2d4da743207c" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:16 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,55 +255,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/049A018F-E8BA-4FA7-AE68-446F10AD8CC1?api-version=2020-06-01\",\r\n \"name\": \"049a018f-e8ba-4fa7-ae68-446f10ad8cc1\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/41ECACA4-7AC1-4EAB-9A38-5DFA77848070?api-version=2020-10-15-preview\",\r\n \"name\": \"41ecaca4-7ac1-4eab-9a38-5dfa77848070\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tODAyND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvc2RrLURvbWFpbi03NTA/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:21 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b0683928-8157-4b45-a60f-51bdc58d8a0f" + "c482adf9-becd-4cdb-ac63-2ea46e7abde3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11971" ], "x-ms-correlation-request-id": [ - "ad74cefb-3b01-42f6-95a9-43d3aaee393d" + "f1facf04-9787-46a1-96b1-7ac0c7d48c43" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020721Z:ad74cefb-3b01-42f6-95a9-43d3aaee393d" + "CENTRALUSEUAP:20210219T004817Z:f1facf04-9787-46a1-96b1-7ac0c7d48c43" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:16 GMT" + ], "Content-Length": [ - "534" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,61 +312,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8024.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5d76c75a-79be-48b2-9c89-f33e5415b964\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024\",\r\n \"name\": \"sdk-Domain-8024\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-750.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5f45137c-c58c-40dc-b189-5acd8ecc8325\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750\",\r\n \"name\": \"sdk-Domain-750\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tODAyND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvc2RrLURvbWFpbi03NTA/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aacd6ed0-7107-45ea-be0c-2cf2345cbdb8" + "d446f58a-8eb1-4d88-a828-180293fcda52" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d0b775c3-f452-4606-8e48-24aacfb80bc7" + "1e6a3536-ae9f-4e79-864f-69bb5bc572cb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11970" ], "x-ms-correlation-request-id": [ - "df4aff64-f006-43fc-b8d5-0b2bb476681f" + "105a57aa-8b74-479e-8005-ce4c13fe5208" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020726Z:df4aff64-f006-43fc-b8d5-0b2bb476681f" + "CENTRALUSEUAP:20210219T004822Z:105a57aa-8b74-479e-8005-ce4c13fe5208" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:22 GMT" + ], "Content-Length": [ - "534" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,61 +375,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8024.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5d76c75a-79be-48b2-9c89-f33e5415b964\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024\",\r\n \"name\": \"sdk-Domain-8024\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-750.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5f45137c-c58c-40dc-b189-5acd8ecc8325\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750\",\r\n \"name\": \"sdk-Domain-750\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tODAyND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvc2RrLURvbWFpbi03NTA/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc49407e-e1aa-4e36-b064-0fe12cf229df" + "d775d0e4-d55f-4317-bec2-746b75cd24b7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:26 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bb8fbf5a-1668-4b8c-b421-59023fa1a7fd" + "528cb7d2-3e69-4767-a1af-66a090d54bc0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11969" ], "x-ms-correlation-request-id": [ - "9264e76e-6d92-4318-8679-63240ddaa925" + "a9c4d7cf-4769-4160-bbf5-2ba4e7606a85" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020726Z:9264e76e-6d92-4318-8679-63240ddaa925" + "CENTRALUSEUAP:20210219T004822Z:a9c4d7cf-4769-4160-bbf5-2ba4e7606a85" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:22 GMT" + ], "Content-Length": [ - "534" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,26 +438,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-8024.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5d76c75a-79be-48b2-9c89-f33e5415b964\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024\",\r\n \"name\": \"sdk-Domain-8024\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-domain-750.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5f45137c-c58c-40dc-b189-5acd8ecc8325\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750\",\r\n \"name\": \"sdk-Domain-750\",\r\n \"type\": \"Microsoft.EventGrid/domains\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05MzEzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODY5ND9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "871557c8-af30-4b90-afef-7b1494a73207" + "a4a5b523-7a39-4164-b39b-32b583a1b41b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -470,41 +470,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:26 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/E8C69F07-8A44-45AC-AA59-BDB9DB2A6947?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/77590386-CBAE-4049-9261-27A33861EB85?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "ce8857ac-ffaa-4927-91bd-8ccc4af89561" + "b3c461ac-7c4f-40bb-95f4-4b1e4b28d3af" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "899" + "897" ], "x-ms-correlation-request-id": [ - "058bb89b-ae0d-46ec-9fed-4b7df3f92f01" + "d73475a6-8660-43c7-b767-2b499ca096c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020727Z:058bb89b-ae0d-46ec-9fed-4b7df3f92f01" + "CENTRALUSEUAP:20210219T004823Z:d73475a6-8660-43c7-b767-2b499ca096c7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:23 GMT" + ], "Content-Length": [ - "898" + "912" ], "Content-Type": [ "application/json; charset=utf-8" @@ -513,55 +513,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313\",\r\n \"name\": \"sdk-EventSubscription-9313\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694\",\r\n \"name\": \"sdk-EventSubscription-8694\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/E8C69F07-8A44-45AC-AA59-BDB9DB2A6947?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRThDNjlGMDctOEE0NC00NUFDLUFBNTktQkRCOURCMkE2OTQ3P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/77590386-CBAE-4049-9261-27A33861EB85?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNzc1OTAzODYtQ0JBRS00MDQ5LTkyNjEtMjdBMzM4NjFFQjg1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:36 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "726a8f50-07a3-470d-9e76-723849569397" + "667bdae4-e084-455a-ae73-a62b24000363" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11968" ], "x-ms-correlation-request-id": [ - "8cc151e8-c878-4a8b-8eaa-b766b65465d9" + "a625c417-7861-429d-b50b-7f9e7b67f5c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020737Z:8cc151e8-c878-4a8b-8eaa-b766b65465d9" + "CENTRALUSEUAP:20210219T004834Z:a625c417-7861-429d-b50b-7f9e7b67f5c5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:33 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,55 +570,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/E8C69F07-8A44-45AC-AA59-BDB9DB2A6947?api-version=2020-06-01\",\r\n \"name\": \"e8c69f07-8a44-45ac-aa59-bdb9db2a6947\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/77590386-CBAE-4049-9261-27A33861EB85?api-version=2020-10-15-preview\",\r\n \"name\": \"77590386-cbae-4049-9261-27a33861eb85\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05MzEzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODY5ND9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "bf276feb-56e1-40db-9bc6-bda7a2dcd135" + "bfcc91fc-4115-44bf-adf8-3ac3ad229068" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11967" ], "x-ms-correlation-request-id": [ - "3d4603f3-7a3b-4cf3-892b-4635c69dfa1e" + "fcecbccc-76a4-439e-b504-a28aaf893cd5" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020737Z:3d4603f3-7a3b-4cf3-892b-4635c69dfa1e" + "CENTRALUSEUAP:20210219T004834Z:fcecbccc-76a4-439e-b504-a28aaf893cd5" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:33 GMT" + ], "Content-Length": [ - "996" + "1010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,61 +627,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313\",\r\n \"name\": \"sdk-EventSubscription-9313\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694\",\r\n \"name\": \"sdk-EventSubscription-8694\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05MzEzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODY5ND9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65d73097-6dc6-4b5d-a2a2-d5ef6abd53e3" + "9a9d2723-407e-41d4-81cd-abc82b492a00" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e98f7a62-d857-4bd1-9fea-7da591610fde" + "a1f07a76-89a5-4f6e-8cb0-f662616cbc94" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11966" ], "x-ms-correlation-request-id": [ - "f8810458-02ec-42b7-8201-2a700fffbdde" + "3f26bd78-99eb-460d-862b-4f62f09086b2" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020742Z:f8810458-02ec-42b7-8201-2a700fffbdde" + "CENTRALUSEUAP:20210219T004839Z:3f26bd78-99eb-460d-862b-4f62f09086b2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:39 GMT" + ], "Content-Length": [ - "996" + "1010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,61 +690,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313\",\r\n \"name\": \"sdk-EventSubscription-9313\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694\",\r\n \"name\": \"sdk-EventSubscription-8694\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05MzEzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODY5ND9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71d10ab6-5c20-4d7e-9588-9696a0034306" + "49463d84-8852-41fe-919f-6f50775b6e57" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "ea5d88aa-7328-4bf3-9522-075e9f81c4f8" + "d2421a7d-4715-4deb-8d93-b2f380321110" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11965" ], "x-ms-correlation-request-id": [ - "61e60317-9e8b-4a22-8308-074a08d02849" + "4591140f-0124-4426-b75e-098f7287ea11" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020742Z:61e60317-9e8b-4a22-8308-074a08d02849" + "CENTRALUSEUAP:20210219T004839Z:4591140f-0124-4426-b75e-098f7287ea11" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:39 GMT" + ], "Content-Length": [ - "996" + "1010" ], "Content-Type": [ "application/json; charset=utf-8" @@ -753,55 +753,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313\",\r\n \"name\": \"sdk-EventSubscription-9313\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694\",\r\n \"name\": \"sdk-EventSubscription-8694\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05MzEzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODY5ND9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9c29e3dc-83f3-4d04-be8d-da0cd44c6066" + "9abf5e18-9a44-4059-b0b6-38076392da42" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11963" ], "x-ms-correlation-request-id": [ - "d74f2d7c-0b98-4a4a-9ef8-b9dc36395dba" + "b4459179-e3a2-4533-a18f-fb6c1a564883" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020753Z:d74f2d7c-0b98-4a4a-9ef8-b9dc36395dba" + "CENTRALUSEUAP:20210219T004850Z:b4459179-e3a2-4533-a18f-fb6c1a564883" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:50 GMT" + ], "Content-Length": [ - "1007" + "1021" ], "Content-Type": [ "application/json; charset=utf-8" @@ -810,26 +810,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313\",\r\n \"name\": \"sdk-EventSubscription-9313\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694\",\r\n \"name\": \"sdk-EventSubscription-8694\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi05MzEzP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2V2ZW50U3Vic2NyaXB0aW9ucy9zZGstRXZlbnRTdWJzY3JpcHRpb24tODY5ND9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "afd166d0-824d-4cb0-91f4-aba9128adf26" + "7f0f216b-99e4-4a11-bf94-db26eb8b0fbf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -842,41 +842,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:42 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B268A830-181B-4CC0-978B-81874AF958FB?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/FFB98E98-EB73-4CF5-8243-C8335BAA42CE?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "dfe88814-2ecc-440e-88ca-2ec919231865" + "e6bd5ca0-8ce4-4f0d-bdd5-d8d64d1974c4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "898" + "896" ], "x-ms-correlation-request-id": [ - "f934e4a6-382c-4e37-892a-19cad7a5df86" + "b737504f-32b4-4d53-8887-f200bf03b04b" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020743Z:f934e4a6-382c-4e37-892a-19cad7a5df86" + "CENTRALUSEUAP:20210219T004840Z:b737504f-32b4-4d53-8887-f200bf03b04b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:40 GMT" + ], "Content-Length": [ - "1006" + "1020" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,55 +885,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-9313\",\r\n \"name\": \"sdk-EventSubscription-9313\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750\",\r\n \"provisioningState\": \"Updating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \".jpg\",\r\n \"includedEventTypes\": [\r\n \"Event1\",\r\n \"Event2\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"UpdatedLabel1\",\r\n \"UpdatedLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-8694\",\r\n \"name\": \"sdk-EventSubscription-8694\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B268A830-181B-4CC0-978B-81874AF958FB?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQjI2OEE4MzAtMTgxQi00Q0MwLTk3OEItODE4NzRBRjk1OEZCP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/FFB98E98-EB73-4CF5-8243-C8335BAA42CE?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRkZCOThFOTgtRUI3My00Q0Y1LTgyNDMtQzgzMzVCQUE0MkNFP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "db8375b8-9327-4500-a94c-26aaec57882e" + "f3f0de34-b0bc-4d07-ac94-6f26a787ea10" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11964" ], "x-ms-correlation-request-id": [ - "21365418-f733-49fa-ab5a-531bb875f777" + "97015d01-3e79-4aea-9e1b-1fca4ce30bc7" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020753Z:21365418-f733-49fa-ab5a-531bb875f777" + "CENTRALUSEUAP:20210219T004850Z:97015d01-3e79-4aea-9e1b-1fca4ce30bc7" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:50 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -942,26 +942,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/B268A830-181B-4CC0-978B-81874AF958FB?api-version=2020-06-01\",\r\n \"name\": \"b268a830-181b-4cc0-978b-81874af958fb\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/FFB98E98-EB73-4CF5-8243-C8335BAA42CE?api-version=2020-10-15-preview\",\r\n \"name\": \"ffb98e98-eb73-4cf5-8243-c8335baa42ce\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/topics/sdk-DomainTopic-184/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-3781?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvdG9waWNzL3Nkay1Eb21haW5Ub3BpYy0xODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi0zNzgxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/topics/sdk-DomainTopic-5532/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6706?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNTUzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY3MDY/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f7e04b7-a989-44a5-a705-fc6afa3b6717" + "16bb3169-bd97-40c7-b2f4-fb4bf3a9dcbb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -974,41 +974,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:07:53 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/217E19C8-BCC0-4D56-A4E7-7F440A233E71?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/ACBB2A40-FB89-4D04-9F58-5A09D1CAD1F1?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "ebf710fd-bde3-465a-8021-b6622e0c4ec3" + "022735ca-1048-474d-b93f-68ed7187e2a0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "897" + "895" ], "x-ms-correlation-request-id": [ - "82bcbbd1-9d90-4be0-9adf-5b33064ba4b8" + "0f4fc507-a26e-46db-95c5-aeda4676d2a1" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020753Z:82bcbbd1-9d90-4be0-9adf-5b33064ba4b8" + "CENTRALUSEUAP:20210219T004851Z:0f4fc507-a26e-46db-95c5-aeda4676d2a1" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:48:51 GMT" + ], "Content-Length": [ - "952" + "968" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1017,55 +1017,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024/topics/sdk-domaintopic-184\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/topics/sdk-DomainTopic-184/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-3781\",\r\n \"name\": \"sdk-EventSubscription-3781\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750/topics/sdk-domaintopic-5532\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/topics/sdk-DomainTopic-5532/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6706\",\r\n \"name\": \"sdk-EventSubscription-6706\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/217E19C8-BCC0-4D56-A4E7-7F440A233E71?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMjE3RTE5QzgtQkNDMC00RDU2LUE0RTctN0Y0NDBBMjMzRTcxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/ACBB2A40-FB89-4D04-9F58-5A09D1CAD1F1?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQUNCQjJBNDAtRkI4OS00RDA0LTlGNTgtNUEwOUQxQ0FEMUYxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:08:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5b76af86-aa52-41ee-a090-8d7d674b237e" + "98561262-9ee9-448c-a144-e355e11a21e7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11962" ], "x-ms-correlation-request-id": [ - "e8cc042c-29be-4184-bc0d-04a4b307b1b2" + "193fec62-4728-4bc2-8877-97262fe2ee6b" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020803Z:e8cc042c-29be-4184-bc0d-04a4b307b1b2" + "CENTRALUSEUAP:20210219T004901Z:193fec62-4728-4bc2-8877-97262fe2ee6b" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:00 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1074,55 +1074,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/217E19C8-BCC0-4D56-A4E7-7F440A233E71?api-version=2020-06-01\",\r\n \"name\": \"217e19c8-bcc0-4d56-a4e7-7f440a233e71\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/ACBB2A40-FB89-4D04-9F58-5A09D1CAD1F1?api-version=2020-10-15-preview\",\r\n \"name\": \"acbb2a40-fb89-4d04-9f58-5a09d1cad1f1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/topics/sdk-DomainTopic-184/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-3781?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvdG9waWNzL3Nkay1Eb21haW5Ub3BpYy0xODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi0zNzgxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/topics/sdk-DomainTopic-5532/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6706?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNTUzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY3MDY/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:08:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "54bcc1d6-a153-4197-941b-3ddb457a6086" + "9f6f4c52-eb5e-4c96-ba2f-2e887a1fd339" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11961" ], "x-ms-correlation-request-id": [ - "86f60f03-fb4c-49e4-b058-aa46ba420d8d" + "319be311-859d-4bb2-98ce-7feae02e7334" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020804Z:86f60f03-fb4c-49e4-b058-aa46ba420d8d" + "CENTRALUSEUAP:20210219T004901Z:319be311-859d-4bb2-98ce-7feae02e7334" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:00 GMT" + ], "Content-Length": [ - "1050" + "1066" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1131,61 +1131,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024/topics/sdk-domaintopic-184\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/topics/sdk-DomainTopic-184/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-3781\",\r\n \"name\": \"sdk-EventSubscription-3781\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750/topics/sdk-domaintopic-5532\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/topics/sdk-DomainTopic-5532/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6706\",\r\n \"name\": \"sdk-EventSubscription-6706\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/topics/sdk-DomainTopic-184/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-3781?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvdG9waWNzL3Nkay1Eb21haW5Ub3BpYy0xODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi0zNzgxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/topics/sdk-DomainTopic-5532/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6706?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNTUzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY3MDY/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe2a781-c5b7-4c00-908f-1a0c7338a5b1" + "e9fcd8fa-7cce-4581-86a2-045868a20d15" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:08:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a05fad38-7e21-4bd5-9e9c-4cdf6d0ca555" + "1d11533e-4a64-43a8-8ec4-fecb9eb58bd7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11960" ], "x-ms-correlation-request-id": [ - "52c06f9d-35cf-46ad-aab8-62260b9dbd29" + "c69e30c6-ce63-40bf-af36-869369704f82" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020809Z:52c06f9d-35cf-46ad-aab8-62260b9dbd29" + "CENTRALUSEUAP:20210219T004907Z:c69e30c6-ce63-40bf-af36-869369704f82" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:06 GMT" + ], "Content-Length": [ - "1050" + "1066" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1194,61 +1194,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024/topics/sdk-domaintopic-184\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/topics/sdk-DomainTopic-184/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-3781\",\r\n \"name\": \"sdk-EventSubscription-3781\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750/topics/sdk-domaintopic-5532\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/topics/sdk-DomainTopic-5532/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6706\",\r\n \"name\": \"sdk-EventSubscription-6706\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/topics/sdk-DomainTopic-184/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-3781?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvdG9waWNzL3Nkay1Eb21haW5Ub3BpYy0xODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi0zNzgxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/topics/sdk-DomainTopic-5532/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6706?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNTUzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY3MDY/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "249314bc-b7e4-42a0-900e-fdd558b18f6d" + "3c124c8e-17ed-493d-933e-7482f53f4803" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:08:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2e7464b5-523c-4f2c-8d10-8129b457b870" + "c4681f9b-0f19-4504-be98-4271bda58bdc" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11959" ], "x-ms-correlation-request-id": [ - "df0e82b7-62f6-45fe-a06c-2eed61885946" + "ddb60875-c98b-4622-aae1-326c0be818bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020809Z:df0e82b7-62f6-45fe-a06c-2eed61885946" + "CENTRALUSEUAP:20210219T004907Z:ddb60875-c98b-4622-aae1-326c0be818bf" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:07 GMT" + ], "Content-Length": [ - "1050" + "1066" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1257,59 +1257,59 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-1206/providers/microsoft.eventgrid/domains/sdk-domain-8024/topics/sdk-domaintopic-184\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/topics/sdk-DomainTopic-184/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-3781\",\r\n \"name\": \"sdk-EventSubscription-3781\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-738/providers/microsoft.eventgrid/domains/sdk-domain-750/topics/sdk-domaintopic-5532\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": true\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/topics/sdk-DomainTopic-5532/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6706\",\r\n \"name\": \"sdk-EventSubscription-6706\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/locations/centraluseuap/eventSubscriptions?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/locations/centraluseuap/eventSubscriptions?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL2V2ZW50U3Vic2NyaXB0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8193ab0-9f5d-49dc-99b1-e9b72f6a824c" + "a6633180-d3db-43e7-9e0a-313348352ef1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:08:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5200c083-a8f6-4f04-8956-6d0be1afdd33" + "d1869013-134a-4e5b-a594-fcaa9b09dc27" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11958" ], "x-ms-correlation-request-id": [ - "fbb396ba-147b-44b0-a386-4f6d93204b64" + "62d5d1bb-4709-45fa-a3c0-4c6e0487b8ad" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020809Z:fbb396ba-147b-44b0-a386-4f6d93204b64" + "CENTRALUSEUAP:20210219T004907Z:62d5d1bb-4709-45fa-a3c0-4c6e0487b8ad" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:07 GMT" + ], "Content-Length": [ "12" ], @@ -1324,120 +1324,120 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024/topics/sdk-DomainTopic-184/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-3781?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTEyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZG9tYWlucy9zZGstRG9tYWluLTgwMjQvdG9waWNzL3Nkay1Eb21haW5Ub3BpYy0xODQvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi0zNzgxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750/topics/sdk-DomainTopic-5532/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-6706?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTczOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tNzUwL3RvcGljcy9zZGstRG9tYWluVG9waWMtNTUzMi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnMvc2RrLUV2ZW50U3Vic2NyaXB0aW9uLTY3MDY/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "357883cb-3223-4f5b-8ab9-f45c6c290e35" + "592b18e1-6aa2-4b27-b25a-476242067c5d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:08:09 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/BD87F7BB-E420-4283-ACB3-41E3EFD96BE9?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/BD87F7BB-E420-4283-ACB3-41E3EFD96BE9?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14996" ], "x-ms-request-id": [ - "033f8948-3ec8-4732-82b7-297230303ee1" + "9a6d861b-e9ea-40f3-bd75-cf50773573eb" ], "x-ms-correlation-request-id": [ - "033f8948-3ec8-4732-82b7-297230303ee1" + "9a6d861b-e9ea-40f3-bd75-cf50773573eb" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020809Z:033f8948-3ec8-4732-82b7-297230303ee1" + "CENTRALUSEUAP:20210219T004908Z:9a6d861b-e9ea-40f3-bd75-cf50773573eb" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:49:07 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/BD87F7BB-E420-4283-ACB3-41E3EFD96BE9?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQkQ4N0Y3QkItRTQyMC00MjgzLUFDQjMtNDFFM0VGRDk2QkU5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:08:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "06fc2c54-dfc1-465d-8937-afc7abd2a2e8" + "002dec03-2b98-4f9d-b302-94bc847c7a9d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11957" ], "x-ms-correlation-request-id": [ - "a13bdc89-c2ff-4028-be5a-cdb33a48b1d9" + "a0add293-8e9f-4c13-a1ef-0d595cd187d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020819Z:a13bdc89-c2ff-4028-be5a-cdb33a48b1d9" + "CENTRALUSEUAP:20210219T004918Z:a0add293-8e9f-4c13-a1ef-0d595cd187d3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:49:18 GMT" + ], "Content-Length": [ - "283" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1446,397 +1446,178 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/BD87F7BB-E420-4283-ACB3-41E3EFD96BE9?api-version=2020-10-15-preview\",\r\n \"name\": \"bd87f7bb-e420-4283-acb3-41e3efd96be9\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/BD87F7BB-E420-4283-ACB3-41E3EFD96BE9?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvQkQ4N0Y3QkItRTQyMC00MjgzLUFDQjMtNDFFM0VGRDk2QkU5P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:08:29 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cbc3b3be-cfc4-4c41-9399-ee20c3ef50f2" + "dd3c0398-f8cd-4886-9338-5d2edf9a7121" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11956" ], "x-ms-correlation-request-id": [ - "c0b737ad-60c9-468d-a552-506315b5258c" + "b92cbe4c-2281-44ab-b702-ab497cfcd73d" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020830Z:c0b737ad-60c9-468d-a552-506315b5258c" + "CENTRALUSEUAP:20210219T004918Z:b92cbe4c-2281-44ab-b702-ab497cfcd73d" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "283" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Fri, 19 Feb 2021 00:49:18 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-738/providers/Microsoft.EventGrid/domains/sdk-Domain-750?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctNzM4L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2RvbWFpbnMvc2RrLURvbWFpbi03NTA/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "253d8937-67fa-4661-a289-d7d060bd8d17" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:08:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/55ECA301-7964-445C-81CD-BDEC07C23D6F?api-version=2020-10-15-preview" + ], + "Retry-After": [ + "10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "c7768c55-5e70-4db6-a607-bcd89b42e1a1" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "36c91321-5409-4612-8312-dd94e6c9c152" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T020840Z:36c91321-5409-4612-8312-dd94e6c9c152" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "283" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:08:49 GMT" - ], - "Pragma": [ - "no-cache" + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/55ECA301-7964-445C-81CD-BDEC07C23D6F?api-version=2020-10-15-preview" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14995" ], "x-ms-request-id": [ - "5ec6a40c-2541-43d4-8503-896f9db59d5e" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "503de79b-fc42-4e9a-baa5-8820c76d0992" ], "x-ms-correlation-request-id": [ - "0153be1b-23c5-449e-bbaa-d135407b770a" + "503de79b-fc42-4e9a-baa5-8820c76d0992" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020850Z:0153be1b-23c5-449e-bbaa-d135407b770a" + "CENTRALUSEUAP:20210219T004918Z:503de79b-fc42-4e9a-baa5-8820c76d0992" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "283" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Fri, 19 Feb 2021 00:49:18 GMT" ], "Expires": [ "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:08:59 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a6efc296-b257-43ed-8b92-e8fe35b87ffb" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "197e30cc-d22a-41cb-ac1c-706cd9fe571a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T020900Z:197e30cc-d22a-41cb-ac1c-706cd9fe571a" - ], - "X-Content-Type-Options": [ - "nosniff" ], "Content-Length": [ - "283" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/55ECA301-7964-445C-81CD-BDEC07C23D6F?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNTVFQ0EzMDEtNzk2NC00NDVDLTgxQ0QtQkRFQzA3QzIzRDZGP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:09:09 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "326a51ab-1643-44f5-bdcd-988f7476af08" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "3c8eea52-758e-4d09-a6ee-1fca397ffa64" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T020910Z:3c8eea52-758e-4d09-a6ee-1fca397ffa64" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "283" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:09:19 GMT" - ], - "Pragma": [ - "no-cache" + "44326f28-01db-457c-a1ec-02b225683feb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "8ad33344-18c5-4bcb-a16e-2c568d03fca4" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11955" ], "x-ms-correlation-request-id": [ - "5e231cd7-43df-4e45-b1a3-1d2258f89b57" + "a02eac1e-6083-461f-a25a-e01320834250" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020920Z:5e231cd7-43df-4e45-b1a3-1d2258f89b57" + "CENTRALUSEUAP:20210219T004928Z:a02eac1e-6083-461f-a25a-e01320834250" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "283" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Sat, 06 Jun 2020 02:09:29 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "0ab0449f-cf5d-4295-8d43-cac0d71ff9e6" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "6c6a010c-bdb7-4399-a94e-c02dbc6fb331" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T020930Z:6c6a010c-bdb7-4399-a94e-c02dbc6fb331" - ], - "X-Content-Type-Options": [ - "nosniff" + "Fri, 19 Feb 2021 00:49:28 GMT" ], "Content-Length": [ - "283" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1845,466 +1626,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/55ECA301-7964-445C-81CD-BDEC07C23D6F?api-version=2020-10-15-preview\",\r\n \"name\": \"55eca301-7964-445c-81cd-bdec07c23d6f\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/55ECA301-7964-445C-81CD-BDEC07C23D6F?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvNTVFQ0EzMDEtNzk2NC00NDVDLTgxQ0QtQkRFQzA3QzIzRDZGP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 02:09:39 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b4451af-2ff4-4a26-b99e-2ce42f337e41" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "c464720b-68a4-48c3-92df-4e83cedd6a1e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T020940Z:c464720b-68a4-48c3-92df-4e83cedd6a1e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "283" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:09:50 GMT" - ], - "Pragma": [ - "no-cache" + "6df493ee-1bbd-4c90-bf6a-ec11f9101c88" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "c822163b-6a39-4100-8fd9-1a01f5dfc6d3" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11954" ], "x-ms-correlation-request-id": [ - "d2b45f6a-ed7c-4588-8c8f-d7c3176001c8" + "bab19b0a-5d8a-4a58-bfdd-0d0b7a8e5a1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T020950Z:d2b45f6a-ed7c-4588-8c8f-d7c3176001c8" + "CENTRALUSEUAP:20210219T004929Z:bab19b0a-5d8a-4a58-bfdd-0d0b7a8e5a1a" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "283" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Date": [ + "Fri, 19 Feb 2021 00:49:28 GMT" ], "Expires": [ "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:10:00 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "816d51e1-1100-47f0-8979-4183eb81ddcb" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "e4dfc1c0-23c3-446c-a505-d865225dcb49" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T021000Z:e4dfc1c0-23c3-446c-a505-d865225dcb49" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "283" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Active\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:10:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "2a3123e1-1e95-4cd5-9184-f06cede23ff9" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-correlation-request-id": [ - "c0dc3e03-cdbe-4ba8-8751-482b1ba5e8cf" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T021010Z:c0dc3e03-cdbe-4ba8-8751-482b1ba5e8cf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "286" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01\",\r\n \"name\": \"412679ce-ff0b-47ca-9d12-38850d7b3e56\",\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/412679CE-FF0B-47CA-9D12-38850D7B3E56?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvNDEyNjc5Q0UtRkYwQi00N0NBLTlEMTItMzg4NTBEN0IzRTU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:10:10 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "d5ef9335-e39c-4feb-a4d5-5f4bf70b07e2" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "0bd3c513-9b97-4099-a020-10b304527b0b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T021011Z:0bd3c513-9b97-4099-a020-10b304527b0b" - ], - "X-Content-Type-Options": [ - "nosniff" ], "Content-Length": [ "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1206/providers/Microsoft.EventGrid/domains/sdk-Domain-8024?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTIwNi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9kb21haW5zL3Nkay1Eb21haW4tODAyND9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "016b9192-0152-4feb-8e36-f830e146dc20" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:10:11 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/DE0D646E-5C1F-4AF9-A401-E629B111E355?api-version=2020-06-01" - ], - "Retry-After": [ - "10" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DE0D646E-5C1F-4AF9-A401-E629B111E355?api-version=2020-06-01" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-request-id": [ - "b47a2983-407e-45db-a6e4-08ea342fcc96" - ], - "x-ms-correlation-request-id": [ - "b47a2983-407e-45db-a6e4-08ea342fcc96" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T021011Z:b47a2983-407e-45db-a6e4-08ea342fcc96" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DE0D646E-5C1F-4AF9-A401-E629B111E355?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvREUwRDY0NkUtNUMxRi00QUY5LUE0MDEtRTYyOUIxMTFFMzU1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:10:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "a1dea3e3-37cb-469c-bb92-57ff3baf4d17" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "21c0c232-42fe-43bc-889b-5d9779c3b410" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T021021Z:21c0c232-42fe-43bc-889b-5d9779c3b410" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "286" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/DE0D646E-5C1F-4AF9-A401-E629B111E355?api-version=2020-06-01\",\r\n \"name\": \"de0d646e-5c1f-4af9-a401-e629b111e355\",\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/DE0D646E-5C1F-4AF9-A401-E629B111E355?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvREUwRDY0NkUtNUMxRi00QUY5LUE0MDEtRTYyOUIxMTFFMzU1P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 02:10:21 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "cba72cb5-212d-4db0-b21b-897406758d8f" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "9ba3bb19-3c48-463e-99c5-389917dc3620" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T021022Z:9ba3bb19-3c48-463e-99c5-389917dc3620" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" ] }, "ResponseBody": "", @@ -2313,11 +1686,11 @@ ], "Names": { "EventSubscriptionToDomainCreateGetUpdateDelete": [ - "sdk-EventGrid-RG-1206", - "sdk-Domain-8024", - "sdk-DomainTopic-184", - "sdk-EventSubscription-9313", - "sdk-EventSubscription-3781" + "sdk-EventGrid-RG-738", + "sdk-Domain-750", + "sdk-DomainTopic-5532", + "sdk-EventSubscription-8694", + "sdk-EventSubscription-6706" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToResourceGroupCreateGetUpdateDelete.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToResourceGroupCreateGetUpdateDelete.json index ec93d40d1c0e..37ff6b180797 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToResourceGroupCreateGetUpdateDelete.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/EventSubscriptionToResourceGroupCreateGetUpdateDelete.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d11e13d9-edb2-4863-93c8-d9691b1de0df" + "744e2b82-3a4b-49f6-a7db-6b8fc53b76b3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,9 +23,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:58:31 GMT" - ], "Pragma": [ "no-cache" ], @@ -33,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "79f4b800-3b57-4829-af9d-41d879edaf11" + "863e3c96-2975-4b9d-b578-ac65bb52d6c3" ], "x-ms-correlation-request-id": [ - "79f4b800-3b57-4829-af9d-41d879edaf11" + "863e3c96-2975-4b9d-b578-ac65bb52d6c3" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015831Z:79f4b800-3b57-4829-af9d-41d879edaf11" + "CENTRALUSEUAP:20210219T004501Z:863e3c96-2975-4b9d-b578-ac65bb52d6c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "40580" + "Date": [ + "Fri, 19 Feb 2021 00:45:00 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "43425" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7708\",\r\n \"name\": \"sdk-EventGrid-RG-7708\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1724\",\r\n \"name\": \"RGName-ps1724\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242\",\r\n \"name\": \"RGName-ps1242\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2627\",\r\n \"name\": \"RGName-ps2627\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2205\",\r\n \"name\": \"RGName-ps2205\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3309\",\r\n \"name\": \"RGName-ps3309\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5822\",\r\n \"name\": \"RGName-ps5822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9506\",\r\n \"name\": \"RGName-ps9506\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2751\",\r\n \"name\": \"sdk-EventGrid-RG-2751\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1\",\r\n \"name\": \"testRg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg\",\r\n \"name\": \"mparkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkrg\",\r\n \"name\": \"vkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"name\": \"MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi\",\r\n \"name\": \"msi\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain\",\r\n \"name\": \"msidomain\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishptestvm_group\",\r\n \"name\": \"kishptestvm_group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829\",\r\n \"name\": \"sdk-EventGrid-RG-1829\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RgWithPolicyZRestrictions\",\r\n \"name\": \"RgWithPolicyZRestrictions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/crptestps1147\",\r\n \"name\": \"crptestps1147\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2\",\r\n \"name\": \"PartnerRg2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1\",\r\n \"name\": \"PartnerRg1\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"name\": \"clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:51:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"name\": \"clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:56:49Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"name\": \"clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T10:02:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"name\": \"clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T20:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7867\",\r\n \"name\": \"RGName-ps7867\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1794\",\r\n \"name\": \"RGName-ps1794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4072\",\r\n \"name\": \"RGName-ps4072\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-8642?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODY0Mj9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-3345?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMzM0NT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "890e5393-f718-4246-a5c1-7f64c6c5548f" + "e5f635a2-c063-4b74-a783-3eab71757fdd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:58:32 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "f189fda0-71cc-4480-91ba-be9b8ab8decf" + "12b646e1-c590-4d17-b2b6-476343c1ab5f" ], "x-ms-correlation-request-id": [ - "f189fda0-71cc-4480-91ba-be9b8ab8decf" + "12b646e1-c590-4d17-b2b6-476343c1ab5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015832Z:f189fda0-71cc-4480-91ba-be9b8ab8decf" + "CENTRALUSEUAP:20210219T004501Z:12b646e1-c590-4d17-b2b6-476343c1ab5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:01 GMT" + ], "Content-Length": [ "202" ], @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642\",\r\n \"name\": \"sdk-EventGrid-RG-8642\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345\",\r\n \"name\": \"sdk-EventGrid-RG-3345\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTg2NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi01MzkwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTMzNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi00MjEyP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"destination\": {\r\n \"endpointType\": \"WebHook\",\r\n \"properties\": {\r\n \"endpointUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid?functionName=EventGridTrigger1&code=\"\r\n }\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"isSubjectCaseSensitive\": false\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "440c32d6-adc6-4d76-85bc-90b409fbec72" + "fe82990e-e7d6-4b55-9be2-bc6470ef56a4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -155,41 +155,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:58:33 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/C8169DD0-2372-4DFD-AEDF-BBB574411F00?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/AD7F638F-CB50-4592-9C4D-CA5FE0C04AE1?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "0e5a8c82-c00d-4162-9f7f-be8000dc7ef0" + "2e45fa2d-c8ad-4379-8a6a-5ef7afbe2e87" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ "899" ], "x-ms-correlation-request-id": [ - "2d9f78b0-ae48-407e-b7a6-48b552c558b2" + "70796757-caa0-46a6-9e3e-9863f5f209aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015834Z:2d9f78b0-ae48-407e-b7a6-48b552c558b2" + "CENTRALUSEUAP:20210219T004504Z:70796757-caa0-46a6-9e3e-9863f5f209aa" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:04 GMT" + ], "Content-Length": [ - "1173" + "1191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,55 +198,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8642\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390\",\r\n \"name\": \"sdk-EventSubscription-5390\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-3345\",\r\n \"provisioningState\": \"Creating\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212\",\r\n \"name\": \"sdk-EventSubscription-4212\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/C8169DD0-2372-4DFD-AEDF-BBB574411F00?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvQzgxNjlERDAtMjM3Mi00REZELUFFREYtQkJCNTc0NDExRjAwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/AD7F638F-CB50-4592-9C4D-CA5FE0C04AE1?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvQUQ3RjYzOEYtQ0I1MC00NTkyLTlDNEQtQ0E1RkUwQzA0QUUxP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:58:44 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "56f19673-e118-43d8-9d78-1106e82ae6ec" + "787a56b1-6ebe-40c7-8105-cdfc4902ac5b" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "48c2481b-40f7-4d5f-98d5-303961630156" + "0feb1c14-957e-4cfd-af41-f9f0845890a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015844Z:48c2481b-40f7-4d5f-98d5-303961630156" + "CENTRALUSEUAP:20210219T004514Z:0feb1c14-957e-4cfd-af41-f9f0845890a2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:14 GMT" + ], "Content-Length": [ - "263" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,112 +255,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/C8169DD0-2372-4DFD-AEDF-BBB574411F00?api-version=2020-06-01\",\r\n \"name\": \"c8169dd0-2372-4dfd-aedf-bbb574411f00\",\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/AD7F638F-CB50-4592-9C4D-CA5FE0C04AE1?api-version=2020-10-15-preview\",\r\n \"name\": \"ad7f638f-cb50-4592-9c4d-ca5fe0c04ae1\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/C8169DD0-2372-4DFD-AEDF-BBB574411F00?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvQzgxNjlERDAtMjM3Mi00REZELUFFREYtQkJCNTc0NDExRjAwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTMzNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi00MjEyP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:58:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "99d6613c-f44f-4078-8fc1-735a9563ff2a" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "77e8d2b3-3eea-445a-8cee-9ae98fbf4bb0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200606T015854Z:77e8d2b3-3eea-445a-8cee-9ae98fbf4bb0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "262" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/C8169DD0-2372-4DFD-AEDF-BBB574411F00?api-version=2020-06-01\",\r\n \"name\": \"c8169dd0-2372-4dfd-aedf-bbb574411f00\",\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTg2NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi01MzkwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Sat, 06 Jun 2020 01:58:54 GMT" - ], - "Pragma": [ - "no-cache" + "5c571e47-b850-48e1-a8ed-9d002593393c" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "f49db900-1aea-4f86-979f-16d32ec57c52" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "349771c8-7019-46f0-b391-8c2be2a7ff5f" + "b5f8d811-735d-494d-a7e4-ba094c23dfa0" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015854Z:349771c8-7019-46f0-b391-8c2be2a7ff5f" + "CENTRALUSEUAP:20210219T004514Z:b5f8d811-735d-494d-a7e4-ba094c23dfa0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:14 GMT" + ], "Content-Length": [ - "1174" + "1289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -369,61 +312,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8642\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390\",\r\n \"name\": \"sdk-EventSubscription-5390\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-3345\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212\",\r\n \"name\": \"sdk-EventSubscription-4212\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTg2NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi01MzkwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTMzNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi00MjEyP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb40e4ff-9345-4956-9234-8a935b63e81f" + "f4a01b92-061d-4fbe-8abb-23bd2280cb85" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:58:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a517e730-4909-42e5-9d49-d464bb559fdc" + "dd30e3bf-19b6-4c4e-b3d6-d933f9b6a1b4" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "bd510626-8946-4057-b84e-4c47d15d6698" + "3ad1b9e2-08f5-46ab-8d68-dedb00b18b98" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015859Z:bd510626-8946-4057-b84e-4c47d15d6698" + "CENTRALUSEUAP:20210219T004519Z:3ad1b9e2-08f5-46ab-8d68-dedb00b18b98" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:19 GMT" + ], "Content-Length": [ - "1174" + "1289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -432,61 +375,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8642\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390\",\r\n \"name\": \"sdk-EventSubscription-5390\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-3345\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212\",\r\n \"name\": \"sdk-EventSubscription-4212\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTg2NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi01MzkwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTMzNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi00MjEyP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f77f87bd-173d-436c-b3db-c09aaaf162c6" + "3ac72af5-a36b-40d2-a815-f63f71dfafc3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:58:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "925fa60a-678b-40d8-8e85-66e32083b700" + "d74841fd-3b57-479a-8d36-4a72266019bb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "5bca77bd-8f9d-4cbf-a00e-727bd2db152a" + "79be809d-3b98-4f94-b694-ecd8524b2007" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015900Z:5bca77bd-8f9d-4cbf-a00e-727bd2db152a" + "CENTRALUSEUAP:20210219T004520Z:79be809d-3b98-4f94-b694-ecd8524b2007" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:19 GMT" + ], "Content-Length": [ - "1174" + "1289" ], "Content-Type": [ "application/json; charset=utf-8" @@ -495,61 +438,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8642\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390\",\r\n \"name\": \"sdk-EventSubscription-5390\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-3345\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212\",\r\n \"name\": \"sdk-EventSubscription-4212\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODY0Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMzM0NS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC9ldmVudFN1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e57fa47-4162-4a29-932b-2c857fb9101c" + "3e1d66ec-1c26-4230-9d2b-8d05966df3c5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:58:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "39a49ffc-f83b-4977-bb5c-91d15894c569" + "35209438-492f-43f3-a2a0-5eae58a0511a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-correlation-request-id": [ - "8a119ba2-e17b-4570-9c10-f85a565454cf" + "50bd0dca-e26a-44fa-aaad-88e4aab82518" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015900Z:8a119ba2-e17b-4570-9c10-f85a565454cf" + "CENTRALUSEUAP:20210219T004520Z:50bd0dca-e26a-44fa-aaad-88e4aab82518" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:19 GMT" + ], "Content-Length": [ - "1186" + "1301" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,124 +501,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-8642\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\"\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390\",\r\n \"name\": \"sdk-EventSubscription-5390\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"topic\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-eventgrid-rg-3345\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"destination\": {\r\n \"properties\": {\r\n \"endpointUrl\": null,\r\n \"endpointBaseUrl\": \"https://devexpfuncappdestination.azurewebsites.net/runtime/webhooks/EventGrid\",\r\n \"maxEventsPerBatch\": 1,\r\n \"preferredBatchSizeInKilobytes\": 64\r\n },\r\n \"endpointType\": \"WebHook\"\r\n },\r\n \"filter\": {\r\n \"subjectBeginsWith\": \"TestPrefix\",\r\n \"subjectEndsWith\": \"TestSuffix\",\r\n \"includedEventTypes\": [\r\n \"Microsoft.Resources.ResourceWriteSuccess\",\r\n \"Microsoft.Resources.ResourceWriteFailure\",\r\n \"Microsoft.Resources.ResourceWriteCancel\",\r\n \"Microsoft.Resources.ResourceDeleteSuccess\",\r\n \"Microsoft.Resources.ResourceDeleteFailure\",\r\n \"Microsoft.Resources.ResourceDeleteCancel\",\r\n \"Microsoft.Resources.ResourceActionSuccess\",\r\n \"Microsoft.Resources.ResourceActionFailure\",\r\n \"Microsoft.Resources.ResourceActionCancel\"\r\n ]\r\n },\r\n \"labels\": [\r\n \"TestLabel1\",\r\n \"TestLabel2\"\r\n ],\r\n \"eventDeliverySchema\": \"EventGridSchema\",\r\n \"retryPolicy\": {\r\n \"maxDeliveryAttempts\": 30,\r\n \"eventTimeToLiveInMinutes\": 1440\r\n }\r\n },\r\n \"systemData\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212\",\r\n \"name\": \"sdk-EventSubscription-4212\",\r\n \"type\": \"Microsoft.EventGrid/eventSubscriptions\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8642/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-5390?api-version=2020-06-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTg2NDIvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi01MzkwP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "//subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345/providers/Microsoft.EventGrid/eventSubscriptions/sdk-EventSubscription-4212?api-version=2020-10-15-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzViNGI2NTBlLTI4YjktNDc5MC1iM2FiLWRkYmQ4OGQ3MjdjNC9yZXNvdXJjZUdyb3Vwcy9zZGstRXZlbnRHcmlkLVJHLTMzNDUvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEdyaWQvZXZlbnRTdWJzY3JpcHRpb25zL3Nkay1FdmVudFN1YnNjcmlwdGlvbi00MjEyP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36f9493a-59be-413f-9648-4b9341f2f16e" + "1210aa41-3ddf-4b62-8838-2ca5e02ae9af" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:59:00 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/DBF57DC3-BB1A-42A6-9171-533A81F6435B?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/264BE5F2-B9EA-4301-8095-617651DB810A?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/DBF57DC3-BB1A-42A6-9171-533A81F6435B?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/264BE5F2-B9EA-4301-8095-617651DB810A?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14999" ], "x-ms-request-id": [ - "e309696b-25eb-4a59-8984-2e65d1983aa0" + "57bd9f77-c6ed-4c36-87be-423049c47e62" ], "x-ms-correlation-request-id": [ - "e309696b-25eb-4a59-8984-2e65d1983aa0" + "57bd9f77-c6ed-4c36-87be-423049c47e62" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015901Z:e309696b-25eb-4a59-8984-2e65d1983aa0" + "CENTRALUSEUAP:20210219T004521Z:57bd9f77-c6ed-4c36-87be-423049c47e62" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:45:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/DBF57DC3-BB1A-42A6-9171-533A81F6435B?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvREJGNTdEQzMtQkIxQS00MkE2LTkxNzEtNTMzQTgxRjY0MzVCP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/264BE5F2-B9EA-4301-8095-617651DB810A?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvbnNTdGF0dXMvMjY0QkU1RjItQjlFQS00MzAxLTgwOTUtNjE3NjUxREI4MTBBP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:59:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "32c027a1-a07b-4c6e-b0a4-4fcd76014b46" + "63c27779-b785-4217-82a9-73de403488e0" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-correlation-request-id": [ - "143f3b5e-d581-43d1-b073-31bdf75efb8c" + "214882b0-5277-475f-b9ad-9fc03830b911" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015911Z:143f3b5e-d581-43d1-b073-31bdf75efb8c" + "CENTRALUSEUAP:20210219T004531Z:214882b0-5277-475f-b9ad-9fc03830b911" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:31 GMT" + ], "Content-Length": [ - "262" + "284" ], "Content-Type": [ "application/json; charset=utf-8" @@ -684,58 +627,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/DBF57DC3-BB1A-42A6-9171-533A81F6435B?api-version=2020-06-01\",\r\n \"name\": \"dbf57dc3-bb1a-42a6-9171-533a81f6435b\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationsStatus/264BE5F2-B9EA-4301-8095-617651DB810A?api-version=2020-10-15-preview\",\r\n \"name\": \"264be5f2-b9ea-4301-8095-617651db810a\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/DBF57DC3-BB1A-42A6-9171-533A81F6435B?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvREJGNTdEQzMtQkIxQS00MkE2LTkxNzEtNTMzQTgxRjY0MzVCP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/operationResults/264BE5F2-B9EA-4301-8095-617651DB810A?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL29wZXJhdGlvblJlc3VsdHMvMjY0QkU1RjItQjlFQS00MzAxLTgwOTUtNjE3NjUxREI4MTBBP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:59:10 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0fd16d10-7681-40bd-845f-399346437244" + "bbc14216-e266-4839-a3b6-4a388bced11e" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "899" ], "x-ms-correlation-request-id": [ - "1dcc5d88-2c7e-499c-b468-85c6ad752de7" + "57fbf2fc-e004-4b56-b88c-a5ae5ff3f293" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T015911Z:1dcc5d88-2c7e-499c-b468-85c6ad752de7" + "CENTRALUSEUAP:20210219T004531Z:57fbf2fc-e004-4b56-b88c-a5ae5ff3f293" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:45:31 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -744,8 +687,8 @@ ], "Names": { "EventSubscriptionToResourceGroupCreateGetUpdateDelete": [ - "sdk-EventGrid-RG-8642", - "sdk-EventSubscription-5390" + "sdk-EventGrid-RG-3345", + "sdk-EventSubscription-4212" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/TopicCreateGetUpdateDelete.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/TopicCreateGetUpdateDelete.json index 4d6fd70da547..1a1b12400a89 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/TopicCreateGetUpdateDelete.json +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/TopicCreateGetUpdateDelete.json @@ -7,15 +7,15 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "402ab548-1d84-451b-be31-07de773c2907" + "b52af184-8df6-4799-b96f-bb01c2b12ce9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -23,9 +23,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:35 GMT" - ], "Pragma": [ "no-cache" ], @@ -33,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "bc830070-f853-4d0f-9d53-0376b9c2567a" + "f4b6167f-9c69-4564-ae40-9ede897be0de" ], "x-ms-correlation-request-id": [ - "bc830070-f853-4d0f-9d53-0376b9c2567a" + "f4b6167f-9c69-4564-ae40-9ede897be0de" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014835Z:bc830070-f853-4d0f-9d53-0376b9c2567a" + "CENTRALUSEUAP:20210219T004532Z:f4b6167f-9c69-4564-ae40-9ede897be0de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -47,35 +44,38 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "40782" + "Date": [ + "Fri, 19 Feb 2021 00:45:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "43627" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7708\",\r\n \"name\": \"sdk-EventGrid-RG-7708\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5807\",\r\n \"name\": \"sdk-EventGrid-RG-5807\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1724\",\r\n \"name\": \"RGName-ps1724\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242\",\r\n \"name\": \"RGName-ps1242\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2627\",\r\n \"name\": \"RGName-ps2627\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps2205\",\r\n \"name\": \"RGName-ps2205\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps3309\",\r\n \"name\": \"RGName-ps3309\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps5822\",\r\n \"name\": \"RGName-ps5822\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps9506\",\r\n \"name\": \"RGName-ps9506\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2751\",\r\n \"name\": \"sdk-EventGrid-RG-2751\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/partnersRg\",\r\n \"name\": \"partnersRg\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testRg1\",\r\n \"name\": \"testRg1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink\",\r\n \"name\": \"vkukke-privatelink\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage\",\r\n \"name\": \"eg-prod-usce-blockstorage\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9628\",\r\n \"name\": \"sdk-EventGrid-RG-9628\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9598\",\r\n \"name\": \"sdk-EventGrid-RG-9598\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2883\",\r\n \"name\": \"sdk-EventGrid-RG-2883\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773\",\r\n \"name\": \"sdk-EventGrid-RG-5773\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DefaultResourceGroup-CUS\",\r\n \"name\": \"DefaultResourceGroup-CUS\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6163\",\r\n \"name\": \"sdk-EventGrid-RG-6163\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1912\",\r\n \"name\": \"sdk-EventGrid-RG-1912\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4181\",\r\n \"name\": \"sdk-EventGrid-RG-4181\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1441\",\r\n \"name\": \"sdk-EventGrid-RG-1441\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1112\",\r\n \"name\": \"sdk-EventGrid-RG-1112\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7158\",\r\n \"name\": \"sdk-EventGrid-RG-7158\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6189\",\r\n \"name\": \"sdk-EventGrid-RG-6189\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6446\",\r\n \"name\": \"sdk-EventGrid-RG-6446\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7900\",\r\n \"name\": \"sdk-EventGrid-RG-7900\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9581\",\r\n \"name\": \"sdk-EventGrid-RG-9581\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5015\",\r\n \"name\": \"sdk-EventGrid-RG-5015\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118\",\r\n \"name\": \"sdk-EventGrid-RG-8118\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg\",\r\n \"name\": \"example-ipfirewallRg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg\",\r\n \"name\": \"testrg\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg2\",\r\n \"name\": \"testrg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrg3\",\r\n \"name\": \"testrg3\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/cli-test-rg\",\r\n \"name\": \"cli-test-rg\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash\",\r\n \"name\": \"msibugbash\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9130\",\r\n \"name\": \"sdk-EventGrid-RG-9130\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbashnew\",\r\n \"name\": \"msibugbashnew\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1\",\r\n \"name\": \"example-privatelinkRg1\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2\",\r\n \"name\": \"example-privatelinkRg2\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9638\",\r\n \"name\": \"sdk-EventGrid-RG-9638\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8035\",\r\n \"name\": \"sdk-EventGrid-RG-8035\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3772\",\r\n \"name\": \"sdk-EventGrid-RG-3772\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5717\",\r\n \"name\": \"sdk-EventGrid-RG-5717\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/privateEndpointConnectionRg\",\r\n \"name\": \"privateEndpointConnectionRg\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1\",\r\n \"name\": \"example-ipfirewallRg1\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DeletePortatesting\",\r\n \"name\": \"DeletePortatesting\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency\",\r\n \"name\": \"eventhubbigeventlatency\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/newRegionsRg\",\r\n \"name\": \"newRegionsRg\",\r\n \"location\": \"southafricanorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"name\": \"clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T19:54:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"name\": \"clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:14:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"name\": \"clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:19:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"name\": \"clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:23:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"name\": \"clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-03-17T20:28:08Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh\",\r\n \"name\": \"amh\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/DEFAULT-EVENTGRID\",\r\n \"name\": \"DEFAULT-EVENTGRID\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testrgstorage\",\r\n \"name\": \"testrgstorage\",\r\n \"location\": \"australiaeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"location\": \"switzerlandnorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandNorth\",\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyWestCentral\",\r\n \"location\": \"germanywestcentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayEast\",\r\n \"location\": \"norwayeast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest\",\r\n \"name\": \"AzureEventGridRunnerRgNorwayWest\",\r\n \"location\": \"norwaywest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"name\": \"AzureEventGridRunnerRGSwitzerlandWest\",\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth\",\r\n \"name\": \"AzureEventGridRunnerRGGermanyNorth\",\r\n \"location\": \"germanynorth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridArmRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS\",\r\n \"name\": \"AzureEventGridArmRunnerRGWestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridArmRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral\",\r\n \"location\": \"australiacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS\",\r\n \"name\": \"AzureEventGridArmRunnerWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaCentral2\",\r\n \"location\": \"australiacentral2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"name\": \"AzureEventGridRunnerRGAustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth\",\r\n \"name\": \"AzureEventGridRunnerRGBrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaCentral\",\r\n \"location\": \"canadacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast\",\r\n \"name\": \"AzureEventGridRunnerRGCanadaEast\",\r\n \"location\": \"canadaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia\",\r\n \"name\": \"AzureEventGridRunnerRGCentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"name\": \"AzureEventGridRunnerRGCentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGEastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"name\": \"AzureEventGridRunnerRGEastUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral\",\r\n \"name\": \"AzureEventGridRunnerRGFranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast\",\r\n \"name\": \"AzureEventGridRunnerRGJapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth\",\r\n \"name\": \"AzureEventGridRunnerRGFranceSouth\",\r\n \"location\": \"francesouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest\",\r\n \"name\": \"AzureEventGridRunnerRGJapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaCentral\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth\",\r\n \"name\": \"AzureEventGridRunnerRGKoreaSouth\",\r\n \"location\": \"koreasouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGNorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaNorth\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope\",\r\n \"name\": \"AzureEventGridRunnerRGNorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGSouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"name\": \"AzureEventGridRunnerRGSouthAfricaWest\",\r\n \"location\": \"southafricawest\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia\",\r\n \"name\": \"AzureEventGridRunnerRGSouthEastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth\",\r\n \"name\": \"AzureEventGridRunnerRgUAEnorth\",\r\n \"location\": \"uaenorth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral\",\r\n \"name\": \"AzureEventGridRunnerRgUAEcentral\",\r\n \"location\": \"uaecentral\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest\",\r\n \"name\": \"AzureEventGridRunnerRGUKWest\",\r\n \"location\": \"ukwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth\",\r\n \"name\": \"AzureEventGridRunnerRGUKSouth\",\r\n \"location\": \"uksouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS\",\r\n \"name\": \"AzureEventGridRunnerRGWestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia\",\r\n \"name\": \"AzureEventGridRunnerRGWestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest\",\r\n \"name\": \"AzureEventGridRunnerRGUSWest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope\",\r\n \"name\": \"AzureEventGridRunnerRGWestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2\",\r\n \"name\": \"AzureEventGridRunnerRGWestUS2\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"name\": \"clitest.rgtfkk6kfyushy5ovmu5txfyf6j66rpk7f2f6r5dlkh5gxqftts3hp7aqwptgaylx3f\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-04-08T23:44:44Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"name\": \"clitest.rgndxanjth44fbheignhtw54wo2jr5btlatmeyxavuttk2reidm7m57vikasiq4bojz\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"name\": \"clitest.rgxwqnj34ym2lai4grh4ivbmpranfbxhqfqhr263fgtq4czo6wv75nzg6rmrn4jqehs\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"name\": \"clitest.rgwxdrzslps2qcsousi6yxadxvbwjol5ndxv7lrz7tls3ii5f4g2hyfuicdcgtsgecr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-05-31T20:05:50Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-EastUS2\",\r\n \"name\": \"Default-Storage-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-Storage-SouthCentralUS\",\r\n \"name\": \"Default-Storage-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-dfd-ussc\",\r\n \"name\": \"eg-dfd-ussc\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2\",\r\n \"name\": \"eg-euap-use2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup\",\r\n \"name\": \"EventGridRunnerTestResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1031\",\r\n \"name\": \"sdk-EventGrid-RG-1031\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1261\",\r\n \"name\": \"sdk-EventGrid-RG-1261\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399\",\r\n \"name\": \"sdk-EventGrid-RG-1399\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459\",\r\n \"name\": \"sdk-EventGrid-RG-1459\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1509\",\r\n \"name\": \"sdk-EventGrid-RG-1509\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-173\",\r\n \"name\": \"sdk-EventGrid-RG-173\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2463\",\r\n \"name\": \"sdk-EventGrid-RG-2463\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2143\",\r\n \"name\": \"sdk-EventGrid-RG-2143\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2488\",\r\n \"name\": \"sdk-EventGrid-RG-2488\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2857\",\r\n \"name\": \"sdk-EventGrid-RG-2857\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3411\",\r\n \"name\": \"sdk-EventGrid-RG-3411\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3101\",\r\n \"name\": \"sdk-EventGrid-RG-3101\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3439\",\r\n \"name\": \"sdk-EventGrid-RG-3439\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-353\",\r\n \"name\": \"sdk-EventGrid-RG-353\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3663\",\r\n \"name\": \"sdk-EventGrid-RG-3663\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3932\",\r\n \"name\": \"sdk-EventGrid-RG-3932\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3963\",\r\n \"name\": \"sdk-EventGrid-RG-3963\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805\",\r\n \"name\": \"sdk-EventGrid-RG-4805\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-511\",\r\n \"name\": \"sdk-EventGrid-RG-511\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-580\",\r\n \"name\": \"sdk-EventGrid-RG-580\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5979\",\r\n \"name\": \"sdk-EventGrid-RG-5979\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7115\",\r\n \"name\": \"sdk-EventGrid-RG-7115\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6138\",\r\n \"name\": \"sdk-EventGrid-RG-6138\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7429\",\r\n \"name\": \"sdk-EventGrid-RG-7429\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7192\",\r\n \"name\": \"sdk-EventGrid-RG-7192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7552\",\r\n \"name\": \"sdk-EventGrid-RG-7552\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662\",\r\n \"name\": \"sdk-EventGrid-RG-7662\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7894\",\r\n \"name\": \"sdk-EventGrid-RG-7894\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7895\",\r\n \"name\": \"sdk-EventGrid-RG-7895\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8203\",\r\n \"name\": \"sdk-EventGrid-RG-8203\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8555\",\r\n \"name\": \"sdk-EventGrid-RG-8555\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8605\",\r\n \"name\": \"sdk-EventGrid-RG-8605\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8746\",\r\n \"name\": \"sdk-EventGrid-RG-8746\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8739\",\r\n \"name\": \"sdk-EventGrid-RG-8739\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9718\",\r\n \"name\": \"sdk-EventGrid-RG-9718\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9968\",\r\n \"name\": \"sdk-EventGrid-RG-9968\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted\",\r\n \"name\": \"testtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest\",\r\n \"name\": \"clitest\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg\",\r\n \"name\": \"DevExpRg\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3784\",\r\n \"name\": \"sdk-EventGrid-RG-3784\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9474\",\r\n \"name\": \"sdk-EventGrid-RG-9474\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652\",\r\n \"name\": \"sdk-EventGrid-RG-652\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted\",\r\n \"name\": \"diagnosticlogstestingtobedeleted\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/Default-ActivityLogAlerts\",\r\n \"name\": \"Default-ActivityLogAlerts\",\r\n \"location\": \"eastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/test\",\r\n \"name\": \"test\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete\",\r\n \"name\": \"IoTonEdgeRG2Delete\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg\",\r\n \"name\": \"mparkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkrg\",\r\n \"name\": \"vkrg\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"name\": \"MC_vkrg_vk-test-eg-arc_eastus2euap\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi\",\r\n \"name\": \"msi\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msidomain\",\r\n \"name\": \"msidomain\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/kishptestvm_group\",\r\n \"name\": \"kishptestvm_group\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829\",\r\n \"name\": \"sdk-EventGrid-RG-1829\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3345\",\r\n \"name\": \"sdk-EventGrid-RG-3345\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RgWithPolicyZRestrictions\",\r\n \"name\": \"RgWithPolicyZRestrictions\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/crptestps1147\",\r\n \"name\": \"crptestps1147\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg2\",\r\n \"name\": \"PartnerRg2\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/PartnerRg1\",\r\n \"name\": \"PartnerRg1\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"name\": \"clitest.rg4pbxex6mzm6a4gwsiefhehkayoyfecnlwooav5lanx6g5uyjscdb3l3eepk3bpygv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:51:53Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"name\": \"clitest.rgge6iiiak24iypdlo5wqasne35kzzbrrirpleih2ilbr5j2cgevcl5nqxnjn6k7roa\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T08:56:49Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"name\": \"clitest.rgg5qlys3fxg7ysi7muncj65vllwx3y5vyki6tgzbh4dzpbv7cy3hytwj2w3ew2choc\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T10:02:43Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"name\": \"clitest.rgfrvqja7uwrdjg5apvxlfn6uypeggpofvrtyjst6nloore7ikpe2fvum3tjhxvv4l3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2020-06-18T20:00:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps7867\",\r\n \"name\": \"RGName-ps7867\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1794\",\r\n \"name\": \"RGName-ps1794\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps4072\",\r\n \"name\": \"RGName-ps4072\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/CustomerUser1Rg1\",\r\n \"name\": \"CustomerUser1Rg1\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537\",\r\n \"name\": \"sdk-EventGrid-RG-4537\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252\",\r\n \"name\": \"sdk-EventGrid-RG-1252\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131\",\r\n \"name\": \"sdk-EventGrid-RG-1131\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2523\",\r\n \"name\": \"sdk-EventGrid-RG-2523\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017\",\r\n \"name\": \"sdk-EventGrid-RG-7017\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903\",\r\n \"name\": \"sdk-EventGrid-RG-3903\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321\",\r\n \"name\": \"sdk-EventGrid-RG-2321\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7056\",\r\n \"name\": \"sdk-EventGrid-RG-7056\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5704\",\r\n \"name\": \"sdk-EventGrid-RG-5704\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6951\",\r\n \"name\": \"sdk-EventGrid-RG-6951\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9245\",\r\n \"name\": \"sdk-EventGrid-RG-9245\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4566\",\r\n \"name\": \"sdk-EventGrid-RG-4566\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4661\",\r\n \"name\": \"sdk-EventGrid-RG-4661\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9590\",\r\n \"name\": \"sdk-EventGrid-RG-9590\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7569\",\r\n \"name\": \"sdk-EventGrid-RG-7569\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8725\",\r\n \"name\": \"sdk-EventGrid-RG-8725\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9816\",\r\n \"name\": \"sdk-EventGrid-RG-9816\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226\",\r\n \"name\": \"sdk-EventGrid-RG-9226\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2994\",\r\n \"name\": \"sdk-EventGrid-RG-2994\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9865\",\r\n \"name\": \"sdk-EventGrid-RG-9865\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624\",\r\n \"name\": \"sdk-EventGrid-RG-8624\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-6192\",\r\n \"name\": \"sdk-EventGrid-RG-6192\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152\",\r\n \"name\": \"sdk-EventGrid-RG-5152\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621\",\r\n \"name\": \"sdk-EventGrid-RG-4621\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3478\",\r\n \"name\": \"sdk-EventGrid-RG-3478\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-1440?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/sdk-EventGrid-RG-8113?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlZ3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "13618401-edf9-41d0-8060-58382e8b85a6" + "614cb2c6-909a-4ffd-b0ae-d08f1556e653" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19042.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -89,9 +89,6 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:36 GMT" - ], "Pragma": [ "no-cache" ], @@ -99,13 +96,13 @@ "1199" ], "x-ms-request-id": [ - "07fb0728-c9a2-40e4-8bfe-d74a5e62cec6" + "b828ff2f-e21e-445b-afdf-ab8e5b7de6a7" ], "x-ms-correlation-request-id": [ - "07fb0728-c9a2-40e4-8bfe-d74a5e62cec6" + "b828ff2f-e21e-445b-afdf-ab8e5b7de6a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014836Z:07fb0728-c9a2-40e4-8bfe-d74a5e62cec6" + "CENTRALUSEUAP:20210219T004533Z:b828ff2f-e21e-445b-afdf-ab8e5b7de6a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -113,6 +110,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:33 GMT" + ], "Content-Length": [ "202" ], @@ -123,73 +123,73 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440\",\r\n \"name\": \"sdk-EventGrid-RG-1440\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113\",\r\n \"name\": \"sdk-EventGrid-RG-8113\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"defaultValue\": \"2\"\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"defaultValue\": \"2\"\r\n }\r\n }\r\n }\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a4a90a77-65c5-49d9-8f94-290cfe40e0d9" + "60d581ba-238b-46ea-8b25-71c213e269d1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "753" + "773" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:39 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6103D3FF-1F40-47AD-B472-37A9C99C3DE6?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/D885B49D-86F6-4ED5-83AB-F241B1C0584B?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "d421070b-5242-4dbd-8f8e-0939b1a83141" + "b79e2f46-6782-44c9-a439-579d32da84d3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "81bb8563-3ea2-4dde-b20c-e6f0acc619d0" + "551d8e0e-63f2-41b1-90bf-be2aa1ce89e0" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014840Z:81bb8563-3ea2-4dde-b20c-e6f0acc619d0" + "CENTRALUSEUAP:20210219T004534Z:551d8e0e-63f2-41b1-90bf-be2aa1ce89e0" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:34 GMT" + ], "Content-Length": [ - "776" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,73 +198,73 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n }\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"defaultValue\": \"2\"\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"defaultValue\": \"2\"\r\n }\r\n }\r\n }\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6a5b9349-f9cd-4f75-b220-8f65e9a2a3c9" + "e33c3053-6b53-4b7d-820e-3c749c959c40" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "753" + "773" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:58 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/04DF97C0-DA93-4A0A-A0C0-E121F2EA7DFA?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/C05EEA2D-16C9-462E-A4BA-141A8C72B313?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "42ea159a-c414-4634-9f33-ba530456b211" + "7126271e-1880-41ed-ac5b-5ff5dbcb63ef" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "4e649253-76c0-4a3b-bce0-db145c4076b0" + "18eb9876-8d72-4f2f-9c25-801152d55027" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014858Z:4e649253-76c0-4a3b-bce0-db145c4076b0" + "CENTRALUSEUAP:20210219T004554Z:18eb9876-8d72-4f2f-9c25-801152d55027" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:54 GMT" + ], "Content-Length": [ - "776" + "793" ], "Content-Type": [ "application/json; charset=utf-8" @@ -273,73 +273,73 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n }\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n }\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"defaultValue\": \"2\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"inputSchemaMappingType\": \"Json\",\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\"\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\"\r\n },\r\n \"dataVersion\": {\r\n \"defaultValue\": \"2\"\r\n }\r\n }\r\n },\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b6ced991-5d83-4d48-8248-5c389dc936ed" + "beb8c3a4-3d61-4304-b8a0-d1c8bc0586f2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "986" + "1006" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:20 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F54BC816-5785-42DC-B4DB-13B33181B5B2?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6A320614-F0D6-4B07-B5C4-72C5FF4135F5?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "f3f33861-738f-478d-830c-88fb582d60e4" + "25cc74ad-fadf-4e83-bd6d-2b7fa53ba409" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], "x-ms-correlation-request-id": [ - "6691c60f-a663-4d29-ac43-9fe8e5a65d4d" + "c46b578c-be95-4ecb-b25b-76a3911089d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014921Z:6691c60f-a663-4d29-ac43-9fe8e5a65d4d" + "CENTRALUSEUAP:20210219T004616Z:c46b578c-be95-4ecb-b25b-76a3911089d2" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:16 GMT" + ], "Content-Length": [ - "913" + "930" ], "Content-Type": [ "application/json; charset=utf-8" @@ -348,55 +348,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6103D3FF-1F40-47AD-B472-37A9C99C3DE6?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNjEwM0QzRkYtMUY0MC00N0FELUI0NzItMzdBOUM5OUMzREU2P2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/D885B49D-86F6-4ED5-83AB-F241B1C0584B?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRDg4NUI0OUQtODZGNi00RUQ1LTgzQUItRjI0MUIxQzA1ODRCP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "76083a9f-1e2e-4f2e-8cb6-0800750b0cc8" + "ae4745db-01ef-48d4-9226-5503fe7a01cb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11993" ], "x-ms-correlation-request-id": [ - "7b9741d0-5a73-4e9d-9a8d-86423cf4a968" + "634bfa3c-9963-46e1-85fd-396a05d2d703" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014850Z:7b9741d0-5a73-4e9d-9a8d-86423cf4a968" + "CENTRALUSEUAP:20210219T004544Z:634bfa3c-9963-46e1-85fd-396a05d2d703" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:44 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -405,55 +405,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6103D3FF-1F40-47AD-B472-37A9C99C3DE6?api-version=2020-06-01\",\r\n \"name\": \"6103d3ff-1f40-47ad-b472-37a9c99c3de6\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/D885B49D-86F6-4ED5-83AB-F241B1C0584B?api-version=2020-10-15-preview\",\r\n \"name\": \"d885b49d-86f6-4ed5-83ab-f241b1c0584b\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:49 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e5d2cc86-0c87-45ce-8543-abac7a8ed1a6" + "be3b32ad-436a-413a-bd43-bbb677826647" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11992" ], "x-ms-correlation-request-id": [ - "1a70e50c-fb71-47a8-87ac-72f5512fe26a" + "39f6388c-4c27-4423-8699-363038587e87" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014850Z:1a70e50c-fb71-47a8-87ac-72f5512fe26a" + "CENTRALUSEUAP:20210219T004545Z:39f6388c-4c27-4423-8699-363038587e87" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:44 GMT" + ], "Content-Length": [ - "933" + "974" ], "Content-Type": [ "application/json; charset=utf-8" @@ -462,61 +462,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "772b943d-0f44-4766-bfc0-73338ae49d52" + "1c2196c2-6e11-43a0-951a-715c05031055" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "193a3a36-c311-4200-8bef-eee47d15645e" + "0d948c5d-b025-423e-a824-494b93ae86e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11991" ], "x-ms-correlation-request-id": [ - "a56edd31-bafa-401d-9120-caa11fd73d90" + "d779e1ea-53cd-4e05-972a-2bba1d957eea" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014855Z:a56edd31-bafa-401d-9120-caa11fd73d90" + "CENTRALUSEUAP:20210219T004550Z:d779e1ea-53cd-4e05-972a-2bba1d957eea" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:50 GMT" + ], "Content-Length": [ - "933" + "974" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,61 +525,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "788f12a3-7cc6-4a01-86f2-99eac107d05f" + "ab31cdb0-6d67-4fda-ab15-1f1fc46e5dfa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a678b7bf-01c0-43f6-9af1-c0781d3b2c3f" + "da9581cd-a444-4cd0-8a9c-20d7c0fad64f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11990" ], "x-ms-correlation-request-id": [ - "8316c775-21e0-4d94-8037-ad48fcaf8dc0" + "8d856b25-c750-41bb-bde3-13dd574ca721" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014855Z:8316c775-21e0-4d94-8037-ad48fcaf8dc0" + "CENTRALUSEUAP:20210219T004550Z:8d856b25-c750-41bb-bde3-13dd574ca721" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:50 GMT" + ], "Content-Length": [ - "933" + "974" ], "Content-Type": [ "application/json; charset=utf-8" @@ -588,55 +588,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b17b9425-7135-4ef7-aee3-7aac177c97df" + "a173cade-b727-470c-a7f2-96f9af580ab6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11985" ], "x-ms-correlation-request-id": [ - "3fd0a6d3-81a0-4e79-b137-cce72dc0ff80" + "2407930a-89c5-4571-8da6-237413bf6554" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014909Z:3fd0a6d3-81a0-4e79-b137-cce72dc0ff80" + "CENTRALUSEUAP:20210219T004604Z:2407930a-89c5-4571-8da6-237413bf6554" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:04 GMT" + ], "Content-Length": [ - "933" + "974" ], "Content-Type": [ "application/json; charset=utf-8" @@ -645,55 +645,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "944c0a76-7702-4301-941d-22865261ce68" + "13b8f3f8-26fa-4e6a-82cc-725bb4eca98a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11983" ], "x-ms-correlation-request-id": [ - "c0cfa060-2cc2-4409-8dff-80a4c4b310db" + "760f509a-237c-4631-9adb-86bc8e75a28e" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014920Z:c0cfa060-2cc2-4409-8dff-80a4c4b310db" + "CENTRALUSEUAP:20210219T004615Z:760f509a-237c-4631-9adb-86bc8e75a28e" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:15 GMT" + ], "Content-Length": [ - "929" + "970" ], "Content-Type": [ "application/json; charset=utf-8" @@ -702,55 +702,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5906fc7b-62f4-4f12-bba1-2e197e8c509a" + "fb9c7db8-51b3-46c0-8c14-819c94aba93e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11981" ], "x-ms-correlation-request-id": [ - "1e8fe1cd-9f2f-43f1-a16a-fee1cb56b1e6" + "3d8a1a28-9172-4780-aee6-ffcf052c7fb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014931Z:1e8fe1cd-9f2f-43f1-a16a-fee1cb56b1e6" + "CENTRALUSEUAP:20210219T004626Z:3d8a1a28-9172-4780-aee6-ffcf052c7fb3" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:26 GMT" + ], "Content-Length": [ - "1038" + "1079" ], "Content-Type": [ "application/json; charset=utf-8" @@ -759,61 +759,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"12.35.67.98\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"12.35.90.100\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3M/YXBpLXZlcnNpb249MjAyMC0wNi0wMQ==", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3M/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b8cb17b-0494-4547-98a8-c40997b62f05" + "1243658d-4688-4e73-a3ff-d0437f670406" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "563a1624-2da6-44a3-bb8d-62cb3c016f5a" + "7d262cd9-7438-45aa-9f30-dcfaf037338d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11989" ], "x-ms-correlation-request-id": [ - "aeb1ad92-cfd5-41bf-ae92-2dcf10144cf4" + "c2242105-5a06-4db5-ab3c-fee67e4119fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014855Z:aeb1ad92-cfd5-41bf-ae92-2dcf10144cf4" + "CENTRALUSEUAP:20210219T004550Z:c2242105-5a06-4db5-ab3c-fee67e4119fa" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:50 GMT" + ], "Content-Length": [ - "945" + "986" ], "Content-Type": [ "application/json; charset=utf-8" @@ -822,61 +822,61 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics?api-version=2020-06-01&$top=5", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3M/YXBpLXZlcnNpb249MjAyMC0wNi0wMSYkdG9wPTU=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics?api-version=2020-10-15-preview&$top=5", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3M/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3JiR0b3A9NQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "837f23ca-0ce2-4b7a-ad07-3bb351d3de48" + "4c9da4bf-9c58-44af-ba18-b6029b9e6eb1" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:55 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4027548b-618b-426a-91f7-e760f51062d3" + "ea8f5639-bf41-47c3-9eab-a8d1550037b7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11988" ], "x-ms-correlation-request-id": [ - "f0c06870-b020-4859-9760-86907103e55a" + "7bbf1852-03fa-4546-b079-25d58915abca" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014855Z:f0c06870-b020-4859-9760-86907103e55a" + "CENTRALUSEUAP:20210219T004550Z:7bbf1852-03fa-4546-b079-25d58915abca" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:45:50 GMT" + ], "Content-Length": [ - "945" + "986" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,93 +885,90 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2020-06-01&$top=100", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIwLTA2LTAxJiR0b3A9MTAw", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/topics?api-version=2020-10-15-preview&$top=100", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljcz9hcGktdmVyc2lvbj0yMDIwLTEwLTE1LXByZXZpZXcmJHRvcD0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77310e68-35a6-4660-9774-6efbfcd6c01d" + "2ba749a0-2d1b-4df9-84e9-33575a2e895c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:48:57 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-original-request-ids": [ - "4dcd8472-17ed-4eca-8cb4-bba739b44abc", - "1d78ca90-f2a7-4bef-9b16-b663bbffb51e", - "dc82e8f5-cf40-460d-a657-3f2d38e8afdf", - "a31149f0-1126-47d3-bab3-e7beea8c3f94", - "9d1d06f4-3649-4303-92be-0ac7d4a5e832", - "6e066357-d710-44c7-a742-054d43f07c05", - "7d09fd9a-b250-4387-a11f-be4728551e65", - "65730292-9fbf-44b5-bfa4-c99738704915", - "52e55ea8-c39f-4077-9620-f702b3367e8f", - "ad5eb1d8-2331-4fa4-b526-340ea7a41303", - "f340f25f-44b3-4f31-aa0a-6067f7103684", - "e87f9c90-f7aa-4610-b413-d032f7fda38e", - "a75c6c0f-6da1-454c-af5d-3274c4bbce12", - "056a9d22-e335-4aa9-93b1-2d8adc93a995", - "ad12840f-b931-4979-8547-2f0ca0b1bb08", - "795feca8-7570-473f-a9eb-0aa223bfcc38", - "228828e8-ad7a-4e43-889c-49beeddd2673", - "329953c7-dbfe-4fcb-ae5b-3be5adab136d", - "883d61d6-0cf6-46c5-8cc0-142790c7a431", - "aa2362e2-0ccc-4ad8-913f-538c07b4abdb", - "ee8b1f61-596f-49ba-8342-0e68c76404c7", - "99a33e74-392d-485f-86d0-d393f4faa181", - "23198cf6-461f-42a6-b0cb-01c2710d23f0", - "7058820b-5161-457a-a0ed-0191d907582a", - "a8fc34bb-d1cd-4f3e-b27a-c0487f2fcc7e", - "4624fda4-cfc4-4334-a08e-711ac8d7202d", - "ebfe23ad-4561-4ab1-8355-182682193bfd", - "b342dd80-8be1-47c9-aaac-c26892f32b86", - "a1726c36-ace4-447e-b1dd-2b1a5a3f3280", - "7a9f41c4-4e53-4c65-bc1c-950319bfa740", - "ee2a7b9a-9476-481a-82ea-1dcf0f87401d", - "df08904d-e27f-405c-b764-debb4d026016", - "0ccf5013-3ae1-4425-a9c8-c51a1e9557ac", - "6110ca0b-0e10-49ea-a622-315dcf901612", - "11d51ec1-bad3-4820-b789-abfc89d9a96e", - "af4bdcaf-5a9b-40b5-a4de-e2b3b8d5df02", - "d8af5f0d-fec4-4376-94b9-e4eeaec3c683", - "2085615b-fb97-4cb3-8813-26f70d7c214f", - "609bd8f2-cb52-4c69-9d50-9714ff553f04", - "4fdf9c45-382c-4c00-9010-3cb6dbcf9036", - "901b05bc-eaeb-4999-8b5a-7f171d9c9ade", - "c44891e7-370b-4556-9dc8-e16264022aac" + "e3e78bad-2bb6-4e13-b7d3-9269c283c2a1", + "bd515f39-6369-48f0-8394-95e7ae7ed517", + "a4c6be3e-8686-4ae5-9c69-c228b8d2c208", + "ca7a5075-008a-44cc-9574-e4e5f93301bc", + "b64e72b9-bfe0-438e-92a0-9cb5dba3bd53", + "de2ef06a-8cfd-4311-93d7-249ca542d36a", + "ffdf61b9-f1e9-4781-828c-f5d2e647f005", + "e75db2f0-df13-4749-84e6-2c83f207f9f9", + "d11a807c-4a4d-4bf1-99fc-e880deb9a399", + "934d2718-a7e8-49df-9174-b2681eaf72b0", + "11e5813e-132a-480f-9b3d-8e4ec9e8237a", + "8d5ee4d0-a902-4866-8b56-33bb5b7aa534", + "c3257e69-1b90-43ac-af7b-04c00dfb1780", + "75c8f878-ef4a-4f40-b9f7-5ade92a632f7", + "fac2db75-d0f5-4f82-818a-2672a9747686", + "c91744c8-10d4-4a8b-b68e-8f5d3416408a", + "03789ca3-933e-46e6-b3a9-bf1c20ad2112", + "0f59516c-95c7-44e8-8837-a7d3a2cb98d0", + "aaabe464-dcba-42f7-942a-b94873cd012c", + "2e70247b-7435-446d-82a7-7b38e8e0a8c4", + "4b9c4876-e987-41a9-be0d-0ca12a77bb44", + "dfb60559-86c9-45ab-b63e-c4c48869d320", + "263fd777-77ae-4cde-8062-a61acf9061f9", + "f06e8afa-b700-4cff-bf45-15b3b71d39c1", + "6bbf64ba-2f7a-4e1c-ae6c-d6cc7b911a29", + "6389e1f1-1f1b-46f0-a673-4b879f2a26ed", + "c7f3696a-acdb-4edd-bffa-75e6d8e3e316", + "c32f7ede-fd87-4ced-abaf-235dbad015e6", + "d37d7f21-fd80-46a7-89fb-2e0e6ea2ea9a", + "67fe4606-ffd2-4f00-b60a-b3bacf418bf7", + "ecf4bcc8-5910-4c8a-89db-bc99f2c521da", + "27a064c8-774c-4318-9ec4-a2549b3b564f", + "792dbd3f-2424-4d06-a2b4-f9b308b589ad", + "a5cc24a4-7200-431b-a4ad-934cdb6e6931", + "fac71bfe-b01b-4b26-a229-d58caaf1551a", + "4482c968-fbdf-4086-919d-688c8068d26b", + "6ef6e20c-c985-46fd-9c98-0e377b124abd", + "f4ab9ee5-7d12-4a58-83f2-3107b7c40cd2", + "d59e783a-6995-4a0f-8b8c-59814e0da475", + "e74d3dd0-1639-4d61-b708-faa60620aa53", + "b0ea9331-a6c8-4ab1-8aa0-4e4766309a72", + "aca00191-f21b-40f5-ac8c-af1dbd2bfdca" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11987" ], "x-ms-request-id": [ - "e5fdc43a-21f8-4291-b9e5-53dd70ad4427" + "5fec382e-4b59-477f-824b-b2eb53153e61" ], "x-ms-correlation-request-id": [ - "e5fdc43a-21f8-4291-b9e5-53dd70ad4427" + "5fec382e-4b59-477f-824b-b2eb53153e61" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014857Z:e5fdc43a-21f8-4291-b9e5-53dd70ad4427" + "CENTRALUSEUAP:20210219T004553Z:5fec382e-4b59-477f-824b-b2eb53153e61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -979,65 +976,68 @@ "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "204719" + "Date": [ + "Fri, 19 Feb 2021 00:45:53 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "131286" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egrunnercustomtopicwestus2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/egrunnercustomtopicwestus2\",\r\n \"name\": \"egrunnercustomtopicwestus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopicwestus2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopicwestus2\",\r\n \"name\": \"eglatencyrunnercustomtopicwestus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-west-us-2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-west-us-2\",\r\n \"name\": \"eg-latency-runner-custom-topic-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-custom-topic-ce59084b-west-us-2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-crud-runner-custom-topic-ce59084b-West-US-2\",\r\n \"name\": \"eg-crud-runner-custom-topic-ce59084b-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-west-us-2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-west-us-2\",\r\n \"name\": \"eg-latency-runner-topic-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-001.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-001\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-002.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-002\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-local-test-west-us-2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"name\": \"eg-latency-runner-topic-name-local-test-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-003.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-003\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-003\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-03.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-03\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-03\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-04.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-04\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-04\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-49e1e4f7-west-us-2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-49e1e4f7-West-US-2\",\r\n \"name\": \"eg-crud-runner-topic-49e1e4f7-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-7aa1fcc4-west-us-2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-7aa1fcc4-West-US-2\",\r\n \"name\": \"eg-crud-runner-queue-topic-7aa1fcc4-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-1e33851d-west-us-2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-1e33851d-West-US-2\",\r\n \"name\": \"eg-crud-runner-topic-1e33851d-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicwestus2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicwestus2\",\r\n \"name\": \"eglatencyrunnerqueuetopicwestus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-lcl-egprodusw2001test.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-lcl-egprodusw2001test\",\r\n \"name\": \"eg-latency-runner-topic-name-lcl-egprodusw2001test\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-lcl-eg-prod-usw2-001.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-lcl-eg-prod-usw2-001\",\r\n \"name\": \"eg-latency-runner-topic-name-lcl-eg-prod-usw2-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-01.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-01\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-02.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-02\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-1b.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-1b\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-1c.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-1c\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-usw2-1a.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-usw2-1a\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-usw2-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://iotodedgebugbash2delete.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete/providers/Microsoft.EventGrid/topics/IoTodEdgeBugBash2Delete\",\r\n \"name\": \"IoTodEdgeBugBash2Delete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdeletedtopic2delete.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete/providers/Microsoft.EventGrid/topics/testDeletedTopic2Delete\",\r\n \"name\": \"testDeletedTopic2Delete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topic2delete.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/IoTonEdgeRG2Delete/providers/Microsoft.EventGrid/topics/Topic2Delete\",\r\n \"name\": \"Topic2Delete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://amdtesttopic2delete.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/amdtesttopic2delete\",\r\n \"name\": \"amdtesttopic2delete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://amdtesttopic200delete.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/amdtesttopic200delete\",\r\n \"name\": \"amdtesttopic200delete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic13b3ea07westus2.westus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic13b3ea07WestUS2\",\r\n \"name\": \"egcrudrunnerqueuetopic13b3ea07WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopiceastus.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopiceastus\",\r\n \"name\": \"eglatencyrunnercustomtopiceastus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-east-us.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-east-us\",\r\n \"name\": \"eg-latency-runner-custom-topic-east-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-east-us.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-east-us\",\r\n \"name\": \"eg-latency-runner-topic-east-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usea-001.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usea-001\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usea-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usea-002.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usea-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usea-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usea-003.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usea-003\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usea-003\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usea-004.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usea-004\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usea-004\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiceastus.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiceastus\",\r\n \"name\": \"eglatencyrunnerqueuetopiceastus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usea-1b.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usea-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usea-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usea-1a.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usea-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usea-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usea-1c.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usea-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usea-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://diagnosticlogstesting.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/topics/diagnosticlogstesting\",\r\n \"name\": \"diagnosticlogstesting\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eventhubbigeventlatency1partition.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency/providers/Microsoft.EventGrid/topics/eventhubbigeventlatency1partition\",\r\n \"name\": \"eventhubbigeventlatency1partition\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://bmteustopic1.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/bmteustopic1\",\r\n \"name\": \"bmteustopic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://raja-test45678.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/DevExpRg/providers/Microsoft.EventGrid/topics/raja-test45678\",\r\n \"name\": \"raja-test45678\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic4cf37fffeastus.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS/providers/Microsoft.EventGrid/topics/egarmrunnertopic4cf37fffEastUS\",\r\n \"name\": \"egarmrunnertopic4cf37fffEastUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicc70291eceastus.eastus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/egcrudrunnertopicc70291ecEastUS\",\r\n \"name\": \"egcrudrunnertopicc70291ecEastUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopicwestus.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopicwestus\",\r\n \"name\": \"eglatencyrunnercustomtopicwestus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-west-us.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-west-us\",\r\n \"name\": \"eg-latency-runner-custom-topic-west-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-west-us.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-west-us\",\r\n \"name\": \"eg-latency-runner-topic-west-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswe-001.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswe-001\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswe-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswe-002.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswe-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswe-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswe-03.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswe-03\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswe-03\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicwestus.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicwestus\",\r\n \"name\": \"eglatencyrunnerqueuetopicwestus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswe-02.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswe-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswe-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswe-01.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswe-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswe-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eventhubbigeventlatency1partition-westus.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eventhubbigeventlatency/providers/Microsoft.EventGrid/topics/eventhubbigeventlatency1partition-westus\",\r\n \"name\": \"eventhubbigeventlatency1partition-westus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic421055d8westus.westus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGWestUS/providers/Microsoft.EventGrid/topics/egarmrunnertopic421055d8WestUS\",\r\n \"name\": \"egarmrunnertopic421055d8WestUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopiccentralus.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopiccentralus\",\r\n \"name\": \"eglatencyrunnercustomtopiccentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-central-us.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-central-us\",\r\n \"name\": \"eg-latency-runner-custom-topic-central-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-central-us.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-central-us\",\r\n \"name\": \"eg-latency-runner-topic-central-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-001.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-001\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-002.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-002-1.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-002-1\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-002-1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-002-2.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-002-2\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-002-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-003.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-003\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-003\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-004.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-004\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-004\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccentralus.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccentralus\",\r\n \"name\": \"eglatencyrunnerqueuetopiccentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-02.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-1b.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-1a.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usce-1c.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usce-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usce-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-prod-usce-blockstorage-perf-topic.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage/providers/Microsoft.EventGrid/topics/eg-prod-usce-blockstorage-perf-topic\",\r\n \"name\": \"eg-prod-usce-blockstorage-perf-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparkpetest.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"test\": \"test\",\r\n \"test2\": \"test2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/mparkpetest\",\r\n \"name\": \"mparkpetest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicb6e930c6centralus.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnertopicb6e930c6CentralUS\",\r\n \"name\": \"egcrudrunnertopicb6e930c6CentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicac55aa5dcentralus.centralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicac55aa5dCentralUS\",\r\n \"name\": \"egcrudrunnerqueuetopicac55aa5dCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopiceastus2.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopiceastus2\",\r\n \"name\": \"eglatencyrunnercustomtopiceastus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-east-us-2.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-east-us-2\",\r\n \"name\": \"eg-latency-runner-topic-east-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-use2-001.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-use2-001\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-use2-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-use2-002.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-use2-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-use2-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiceastus2.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiceastus2\",\r\n \"name\": \"eglatencyrunnerqueuetopiceastus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-use2-01.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-use2-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-use2-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-use2-04.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-use2-04\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-use2-04\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-use2-03.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-use2-03\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-use2-03\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-use2-1c.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-use2-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-use2-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-use2-1b.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-use2-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-use2-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-use2-1a.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-use2-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-use2-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicdup20.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicDup20\",\r\n \"name\": \"testTopicDup20\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicdup21.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicDup21\",\r\n \"name\": \"testTopicDup21\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicdup30.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicDup30\",\r\n \"name\": \"testTopicDup30\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicdup33.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicDup33\",\r\n \"name\": \"testTopicDup33\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic01fd9bb0eastus2.eastus2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/egcrudrunnertopic01fd9bb0EastUS2\",\r\n \"name\": \"egcrudrunnertopic01fd9bb0EastUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egrunnercustomtopicwestcentralus.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/egrunnercustomtopicwestcentralus\",\r\n \"name\": \"egrunnercustomtopicwestcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopicwestcentralus.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopicwestcentralus\",\r\n \"name\": \"eglatencyrunnercustomtopicwestcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-west-central-us.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-west-central-us\",\r\n \"name\": \"eg-latency-runner-custom-topic-west-central-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-west-central-us.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-west-central-us\",\r\n \"name\": \"eg-latency-runner-topic-west-central-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswc-002.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswc-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswc-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswc-003.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswc-003\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswc-003\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswc-01.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswc-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswc-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-9e81fd7b-west-central-us.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-9e81fd7b-West-Central-US\",\r\n \"name\": \"eg-crud-runner-topic-9e81fd7b-West-Central-US\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicwestcentralus.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicwestcentralus\",\r\n \"name\": \"eglatencyrunnerqueuetopicwestcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswc-02.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswc-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswc-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uswc-03.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uswc-03\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uswc-03\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://pstesttopic-ps4285.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/RGName-ps1242/providers/Microsoft.EventGrid/topics/PSTestTopic-ps4285\",\r\n \"name\": \"PSTestTopic-ps4285\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-prod-uswc-02.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-prod-uswc-02\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-prod-uswc-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic41c3b66awestcentralus.westcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnertopic41c3b66aWestCentralUS\",\r\n \"name\": \"egcrudrunnertopic41c3b66aWestCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-auea-02.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-auea-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-auea-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-australiaeast.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-australiaeast\",\r\n \"name\": \"eg-latency-runner-topic-australiaeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-auea-01.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-auea-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-auea-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-3d6fcc2c-australia-east.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-3d6fcc2c-Australia-East\",\r\n \"name\": \"eg-crud-runner-queue-topic-3d6fcc2c-Australia-East\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-16d21dfe-australia-east.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-16d21dfe-Australia-East\",\r\n \"name\": \"eg-crud-runner-topic-16d21dfe-Australia-East\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicaustraliaeast.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicaustraliaeast\",\r\n \"name\": \"eglatencyrunnerqueuetopicaustraliaeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopice4208aafaustraliaeast.australiaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/egcrudrunnertopice4208aafAustraliaEast\",\r\n \"name\": \"egcrudrunnertopice4208aafAustraliaEast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-australiasoutheast.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-australiasoutheast\",\r\n \"name\": \"eg-latency-runner-topic-australiasoutheast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ause-01.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ause-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ause-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ause-02.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ause-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ause-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicaustraliasoutheast.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicaustraliasoutheast\",\r\n \"name\": \"eglatencyrunnerqueuetopicaustraliasoutheast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic5b6c595daustraliasoutheast.australiasoutheast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/topics/egcrudrunnertopic5b6c595dAustraliaSoutheast\",\r\n \"name\": \"egcrudrunnertopic5b6c595dAustraliaSoutheast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-australiacentral.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-australiacentral\",\r\n \"name\": \"eg-latency-runner-topic-australiacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-auce-02.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-auce-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-auce-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-auce-01.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-auce-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-auce-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-fdc3476b-australia-central.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-fdc3476b-Australia-Central\",\r\n \"name\": \"eg-crud-runner-topic-fdc3476b-Australia-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicaustraliacentral.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicaustraliacentral\",\r\n \"name\": \"eglatencyrunnerqueuetopicaustraliacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic416e8703australiacentral.australiacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/egcrudrunnertopic416e8703AustraliaCentral\",\r\n \"name\": \"egcrudrunnertopic416e8703AustraliaCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-japaneast.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-japaneast\",\r\n \"name\": \"eg-latency-runner-topic-japaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-1e6b2191-japan-east.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-1e6b2191-Japan-East\",\r\n \"name\": \"eg-crud-runner-queue-topic-1e6b2191-Japan-East\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicjapaneast.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicjapaneast\",\r\n \"name\": \"eglatencyrunnerqueuetopicjapaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-jpea-1b.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-jpea-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-jpea-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-jpea-1c.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-jpea-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-jpea-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-jpea-1a.japaneast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-jpea-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-jpea-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-jpwe-01.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-jpwe-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-jpwe-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-jpwe-02.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-jpwe-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-jpwe-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-japanwest.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-japanwest\",\r\n \"name\": \"eg-latency-runner-topic-japanwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-dd57ef29-japan-west.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-dd57ef29-Japan-West\",\r\n \"name\": \"eg-crud-runner-queue-topic-dd57ef29-Japan-West\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicjapanwest.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicjapanwest\",\r\n \"name\": \"eglatencyrunnerqueuetopicjapanwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic9b41203fjapanwest.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/egcrudrunnertopic9b41203fJapanWest\",\r\n \"name\": \"egcrudrunnertopic9b41203fJapanWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic47e6baddjapanwest.japanwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic47e6baddJapanWest\",\r\n \"name\": \"egcrudrunnerqueuetopic47e6baddJapanWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-west-europe.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-west-europe\",\r\n \"name\": \"eg-latency-runner-topic-west-europe\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euwe-001.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euwe-001\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euwe-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euwe-002.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euwe-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euwe-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-f438994f-west-europe.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-f438994f-West-Europe\",\r\n \"name\": \"eg-crud-runner-queue-topic-f438994f-West-Europe\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyqueuerunnertopicwesteurope.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eglatencyqueuerunnertopicwesteurope\",\r\n \"name\": \"eglatencyqueuerunnertopicwesteurope\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euwe-1a.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euwe-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euwe-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euwe-1c.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euwe-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euwe-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euwe-1b.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euwe-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euwe-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testeuwetopic.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"westeurope\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/topics/testeuwetopic\",\r\n \"name\": \"testeuwetopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic98d07eb7westeurope.westeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/egcrudrunnertopic98d07eb7WestEurope\",\r\n \"name\": \"egcrudrunnertopic98d07eb7WestEurope\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-north-europe.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-north-europe\",\r\n \"name\": \"eg-latency-runner-topic-north-europe\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euno-001.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euno-001\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euno-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euno-002.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euno-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euno-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicnortheurope.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicnortheurope\",\r\n \"name\": \"eglatencyrunnerqueuetopicnortheurope\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euno-1a.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euno-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euno-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euno-1c.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euno-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euno-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-euno-1b.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-euno-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-euno-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic8df250cbnortheurope.northeurope-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic8df250cbNorthEurope\",\r\n \"name\": \"egcrudrunnerqueuetopic8df250cbNorthEurope\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-southeast-asia.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-southeast-asia\",\r\n \"name\": \"eg-latency-runner-topic-southeast-asia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-apac-001.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-apac-001\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-apac-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-apac-002.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-apac-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-apac-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-70775835-southeast-asia.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-70775835-Southeast-Asia\",\r\n \"name\": \"eg-crud-runner-queue-topic-70775835-Southeast-Asia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyqueuerunnertopicsoutheastasia.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia/providers/Microsoft.EventGrid/topics/eglatencyqueuerunnertopicsoutheastasia\",\r\n \"name\": \"eglatencyqueuerunnertopicsoutheastasia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-apac-1c.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-apac-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-apac-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-apac-1a.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-apac-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-apac-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-apac-1b.southeastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSoutheastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-apac-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-apac-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-east-asia.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-east-asia\",\r\n \"name\": \"eg-latency-runner-topic-east-asia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-asea-001.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-asea-001\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-asea-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-asea-002.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-asea-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-asea-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-5b42adc2-east-asia.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-5b42adc2-East-Asia\",\r\n \"name\": \"eg-crud-runner-queue-topic-5b42adc2-East-Asia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiceastasia.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiceastasia\",\r\n \"name\": \"eglatencyrunnerqueuetopiceastasia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-asea-02.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-asea-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-asea-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-asea-01.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-asea-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-asea-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic126a80b2eastasia.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/egcrudrunnertopic126a80b2EastAsia\",\r\n \"name\": \"egcrudrunnertopic126a80b2EastAsia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic23e9089ceastasia.eastasia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic23e9089cEastAsia\",\r\n \"name\": \"egcrudrunnerqueuetopic23e9089cEastAsia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-northcentralus.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-northcentralus\",\r\n \"name\": \"eg-latency-runner-topic-northcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usnc-02.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usnc-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usnc-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-usnc-01.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-usnc-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-usnc-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-b373f9ee-north-central-us.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-b373f9ee-North-Central-US\",\r\n \"name\": \"eg-crud-runner-topic-b373f9ee-North-Central-US\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicnorthcentralus.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicnorthcentralus\",\r\n \"name\": \"eglatencyrunnerqueuetopicnorthcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicfda2a2b8northcentralus.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicfda2a2b8NorthCentralUS\",\r\n \"name\": \"egcrudrunnerqueuetopicfda2a2b8NorthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic5b9e8a7fnorthcentralus.northcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnertopic5b9e8a7fNorthCentralUS\",\r\n \"name\": \"egcrudrunnertopic5b9e8a7fNorthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-southcentralus.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-southcentralus\",\r\n \"name\": \"eg-latency-runner-topic-southcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ussc-01.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ussc-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ussc-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ussc-02.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ussc-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ussc-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicsouthcentralus.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicsouthcentralus\",\r\n \"name\": \"eglatencyrunnerqueuetopicsouthcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicc596d18esouthcentralus.southcentralus-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnertopicc596d18eSouthCentralUS\",\r\n \"name\": \"egcrudrunnertopicc596d18eSouthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-brso-02.brazilsouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-brso-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-brso-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-brazilsouth.brazilsouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-brazilsouth\",\r\n \"name\": \"eg-latency-runner-topic-brazilsouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-brso-01.brazilsouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-brso-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-brso-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicbrazilsouth.brazilsouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicbrazilsouth\",\r\n \"name\": \"eglatencyrunnerqueuetopicbrazilsouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-cace-01.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-cace-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-cace-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-canadacentral.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-canadacentral\",\r\n \"name\": \"eg-latency-runner-topic-canadacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-cace-02.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-cace-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-cace-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-56b2c786-canada-central.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-56b2c786-Canada-Central\",\r\n \"name\": \"eg-crud-runner-queue-topic-56b2c786-Canada-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccanadacentral.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccanadacentral\",\r\n \"name\": \"eglatencyrunnerqueuetopiccanadacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicda84f286canadacentral.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/egcrudrunnertopicda84f286CanadaCentral\",\r\n \"name\": \"egcrudrunnertopicda84f286CanadaCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic8f6c614dcanadacentral.canadacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic8f6c614dCanadaCentral\",\r\n \"name\": \"egcrudrunnerqueuetopic8f6c614dCanadaCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-canadaeast.canadaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-canadaeast\",\r\n \"name\": \"eg-latency-runner-topic-canadaeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-caea-02.canadaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-caea-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-caea-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-caea-01.canadaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-caea-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-caea-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccanadaeast.canadaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccanadaeast\",\r\n \"name\": \"eglatencyrunnerqueuetopiccanadaeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic01c5c8eecanadaeast.canadaeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic01c5c8eeCanadaEast\",\r\n \"name\": \"egcrudrunnerqueuetopic01c5c8eeCanadaEast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ince-02.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ince-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ince-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ince-01.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ince-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ince-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-centralindia.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-centralindia\",\r\n \"name\": \"eg-latency-runner-topic-centralindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccentralindia.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccentralindia\",\r\n \"name\": \"eglatencyrunnerqueuetopiccentralindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtodelete.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"centralindia\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/testtodelete\",\r\n \"name\": \"testtodelete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopiccentralindia.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"centralindia\",\r\n \"tags\": {\r\n \"test1\": \"test1 \"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/topics/testtopiccentralindia\",\r\n \"name\": \"testtopiccentralindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicdcffb568centralindia.centralindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicdcffb568CentralIndia\",\r\n \"name\": \"egcrudrunnerqueuetopicdcffb568CentralIndia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-inso-01.southindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-inso-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-inso-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-inso-02.southindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-inso-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-inso-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-southindia.southindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-southindia\",\r\n \"name\": \"eg-latency-runner-topic-southindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-afb91465-south-india.southindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-afb91465-South-India\",\r\n \"name\": \"eg-crud-runner-queue-topic-afb91465-South-India\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicsouthindia.southindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicsouthindia\",\r\n \"name\": \"eglatencyrunnerqueuetopicsouthindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicfefc7529southindia.southindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicfefc7529SouthIndia\",\r\n \"name\": \"egcrudrunnerqueuetopicfefc7529SouthIndia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-inwe-01.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-inwe-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-inwe-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-westindia.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-westindia\",\r\n \"name\": \"eg-latency-runner-topic-westindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-inwe-02.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-inwe-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-inwe-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-e8cd72b4-west-india.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-e8cd72b4-West-India\",\r\n \"name\": \"eg-crud-runner-queue-topic-e8cd72b4-West-India\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicwestindia.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicwestindia\",\r\n \"name\": \"eglatencyrunnerqueuetopicwestindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicc9215558westindia.westindia-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicc9215558WestIndia\",\r\n \"name\": \"egcrudrunnerqueuetopicc9215558WestIndia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-francecentral.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-francecentral\",\r\n \"name\": \"eg-latency-runner-topic-francecentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-b08055b1-france-central.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-b08055b1-France-Central\",\r\n \"name\": \"eg-crud-runner-queue-topic-b08055b1-France-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-d1259a6c-france-central.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-d1259a6c-France-Central\",\r\n \"name\": \"eg-crud-runner-topic-d1259a6c-France-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicfrancecentral.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicfrancecentral\",\r\n \"name\": \"eglatencyrunnerqueuetopicfrancecentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-frce-1b.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-frce-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-frce-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-frce-1c.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-frce-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-frce-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-frce-1a.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-frce-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-frce-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic6cc75d96francecentral.francecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic6cc75d96FranceCentral\",\r\n \"name\": \"egcrudrunnerqueuetopic6cc75d96FranceCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ukwe-02.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ukwe-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ukwe-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ukwe-01.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ukwe-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ukwe-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-ukwest.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-ukwest\",\r\n \"name\": \"eg-latency-runner-topic-ukwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-d916a6b6-uk-west.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-d916a6b6-UK-West\",\r\n \"name\": \"eg-crud-runner-queue-topic-d916a6b6-UK-West\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-eccaa2c2-uk-west.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-eccaa2c2-UK-West\",\r\n \"name\": \"eg-crud-runner-topic-eccaa2c2-UK-West\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicukwest.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicukwest\",\r\n \"name\": \"eglatencyrunnerqueuetopicukwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic7641d945ukwest.ukwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/egcrudrunnertopic7641d945UKWest\",\r\n \"name\": \"egcrudrunnertopic7641d945UKWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-uksouth.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-uksouth\",\r\n \"name\": \"eg-latency-runner-topic-uksouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ukso-04.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ukso-04\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ukso-04\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicuksouth.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicuksouth\",\r\n \"name\": \"eglatencyrunnerqueuetopicuksouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ukso-1b.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ukso-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ukso-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ukso-1c.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ukso-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ukso-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-ukso-1a.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-ukso-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-ukso-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicb302e540uksouth.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/egcrudrunnertopicb302e540UKSouth\",\r\n \"name\": \"egcrudrunnertopicb302e540UKSouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic85b17b92uksouth.uksouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic85b17b92UKSouth\",\r\n \"name\": \"egcrudrunnerqueuetopic85b17b92UKSouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-krce-01.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-krce-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-krce-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-krce-02.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-krce-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-krce-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-koreacentral.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-koreacentral\",\r\n \"name\": \"eg-latency-runner-topic-koreacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-a7e75127-korea-central.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-a7e75127-Korea-Central\",\r\n \"name\": \"eg-crud-runner-queue-topic-a7e75127-Korea-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopickoreacentral.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopickoreacentral\",\r\n \"name\": \"eglatencyrunnerqueuetopickoreacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic9a9c8d1ekoreacentral.koreacentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/topics/egcrudrunnertopic9a9c8d1eKoreaCentral\",\r\n \"name\": \"egcrudrunnertopic9a9c8d1eKoreaCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-krso-02.koreasouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-krso-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-krso-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-koreasouth.koreasouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-koreasouth\",\r\n \"name\": \"eg-latency-runner-topic-koreasouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-krso-01.koreasouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-krso-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-krso-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopickoreasouth.koreasouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopickoreasouth\",\r\n \"name\": \"eglatencyrunnerqueuetopickoreasouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopica83d64b4koreasouth.koreasouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopica83d64b4KoreaSouth\",\r\n \"name\": \"egcrudrunnerqueuetopica83d64b4KoreaSouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null\r\n },\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/topics/egcrudrunnertopic81baeae0KoreaSouth\",\r\n \"name\": \"egcrudrunnertopic81baeae0KoreaSouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-safn-02.southafricanorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-safn-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-safn-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicsafnorth.southafricanorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicsafnorth\",\r\n \"name\": \"eglatencyrunnerqueuetopicsafnorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-safn-01.southafricanorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-safn-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-safn-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-safnorth.southafricanorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-safnorth\",\r\n \"name\": \"eg-latency-runner-topic-safnorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-uaenorth.uaenorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-uaenorth\",\r\n \"name\": \"eg-latency-runner-topic-uaenorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uaen-01.uaenorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uaen-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uaen-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uaen-02.uaenorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uaen-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uaen-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic2b5a573euaenorth.uaenorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/topics/egcrudrunnertopic2b5a573eUAENorth\",\r\n \"name\": \"egcrudrunnertopic2b5a573eUAENorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdeleteswno.switzerlandnorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"switzerlandnorth\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testdeleteswno\",\r\n \"name\": \"testdeleteswno\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopiccf1dd5afswitzerlandnorth.switzerlandnorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth/providers/Microsoft.EventGrid/topics/egcrudrunnertopiccf1dd5afSwitzerlandNorth\",\r\n \"name\": \"egcrudrunnertopiccf1dd5afSwitzerlandNorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdeletegewc.germanywestcentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"germanywestcentral\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testdeletegewc\",\r\n \"name\": \"testdeletegewc\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicb622b62bgermanywestcentral.germanywestcentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany West Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral/providers/Microsoft.EventGrid/topics/egcrudrunnertopicb622b62bGermanyWestCentral\",\r\n \"name\": \"egcrudrunnertopicb622b62bGermanyWestCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdelete.norwayeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"norwayeast\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/topics/testdelete\",\r\n \"name\": \"testdelete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdocdbnoea.norwayeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"norwayeast\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/topics/testDocDbnoea\",\r\n \"name\": \"testDocDbnoea\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-norwayeast.norwayeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-norwayeast\",\r\n \"name\": \"eg-latency-runner-topic-norwayeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicnorwayeast.norwayeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicnorwayeast\",\r\n \"name\": \"eglatencyrunnerqueuetopicnorwayeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-noea-02.norwayeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-noea-02\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-noea-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-noea-01.norwayeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-noea-01\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-noea-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicd4fd5aednorwayeast.norwayeast-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast/providers/Microsoft.EventGrid/topics/egcrudrunnertopicd4fd5aedNorwayEast\",\r\n \"name\": \"egcrudrunnertopicd4fd5aedNorwayEast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sampletopic34.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55c51161-fe8c-4c42-bf9b-8097198d6802\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/SampleRg/providers/Microsoft.EventGrid/topics/SampleTopic34\",\r\n \"name\": \"SampleTopic34\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egrunnercustomtopiceastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bf5513b5-abc6-4ac5-9d09-455c19c628c6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/egrunnercustomtopiceastus2euap\",\r\n \"name\": \"egrunnercustomtopiceastus2euap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-east-us-2-euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f274589b-bbe5-4eb6-88c7-ad4edd625021\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-east-us-2-euap\",\r\n \"name\": \"eg-latency-runner-topic-east-us-2-euap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-002.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8e52e750-9e1f-41f1-ba50-4076841668d2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-002\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-002\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-003.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1f7db8d0-bcd0-41e6-828e-19cf1da44cef\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-003\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-003\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-001.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1833fa20-0031-4acf-a347-bd68ba191022\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-001\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-001\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiceastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55ac8913-6e0c-4fd5-830b-9b748fc9833a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiceastus2euap\",\r\n \"name\": \"eglatencyrunnerqueuetopiceastus2euap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-sla-control-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"736b24e4-e936-41a2-b3f2-a88ee48ae47a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-sla-control-topic\",\r\n \"name\": \"eg-euap-use2-sla-control-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-delay-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"30d2e26b-b11c-46bf-ace9-a8f51c7e262d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-delay-queues-topic\",\r\n \"name\": \"eg-euap-use2-delay-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-02.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bf044bf1-176e-4335-bdec-9a5cba7198da\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-03.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"39fc42dc-033d-459d-99e8-da3b27b0d710\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-03\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-03\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-eventsizes-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3f97e836-9d95-45af-8192-1065ead47c1b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-eventsizes-topic\",\r\n \"name\": \"eg-euap-use2-eventsizes-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-batching-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88fd4aff-d632-4439-830f-b340682d4f0d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": []\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-batching-topic\",\r\n \"name\": \"eg-euap-use2-batching-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-euap-use2-1c.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fc1753f4-f3cb-4298-b769-878b60001508\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-euap-use2-1c\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-euap-use2-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-1c.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"32f825ab-52b9-4870-b59f-309746335dd8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-1c\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-1c\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-1b.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5fd7e0cd-4435-4122-801c-01cb9589375d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-1b\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-1b\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-1a.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"65160ea5-d21c-4c41-8790-b708c504c58d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-1a\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-1a\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-201.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8a551c79-e72c-4061-aab3-825b3f5461bb\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-201\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-201\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-dedicated-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a7bda825-ab3f-4190-b687-3321d4cfca09\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-use2-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-move-extents-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f9fdecc7-afd3-4723-b985-5fb5075230fa\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"newtag\": \"valuetag\",\r\n \"tag2\": \"tag2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-move-extents-topic\",\r\n \"name\": \"eg-euap-use2-move-extents-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-202.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c693d65a-ec9e-499f-9fbf-86821979387c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-202\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-202\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopiccaed5e59eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0cda1506-0f51-4f12-b764-682f12a06ed6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/egarmrunnertopiccaed5e59EASTUS2EUAP\",\r\n \"name\": \"egarmrunnertopiccaed5e59EASTUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic320919a5eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"628a2d56-cf3e-413d-b2bb-901587c63df6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/egarmrunnertopic320919a5EASTUS2EUAP\",\r\n \"name\": \"egarmrunnertopic320919a5EASTUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-use2-301.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"14b30439-b7fe-4384-bab3-fc07592ac4ce\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-use2-301\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-use2-301\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ipfirewalltopic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"85c4fa06-4632-4dec-8e5d-87b8931c94f8\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"0.0.0.0/0\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg1/providers/Microsoft.EventGrid/topics/ipfirewalltopic\",\r\n \"name\": \"ipfirewalltopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitesttopic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"40fa4459-8fcc-43f1-ad5c-b756f2a2f145\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/topics/msitesttopic\",\r\n \"name\": \"msitesttopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicdup.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a78c2c2e-6cf6-4c3c-8631-1f2dd38bbc27\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicDup\",\r\n \"name\": \"testTopicDup\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicdup1.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d579a0c3-7446-47a9-9d87-31b568fe676b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicDup1\",\r\n \"name\": \"testTopicDup1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicdup5.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"feedb3fe-efab-487f-8bdc-e497857cd4b0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicDup5\",\r\n \"name\": \"testTopicDup5\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitesttopicwithout.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"97faae8c-a8ab-4a5e-b36d-c4f46e1c76e3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/topics/msitesttopicwithout\",\r\n \"name\": \"msitesttopicwithout\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitesttopicwithout1.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d2566353-7cc3-4bc7-a5a7-d66995b7358c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/topics/msitesttopicwithout1\",\r\n \"name\": \"msitesttopicwithout1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic6cae8b47eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b44d1509-59a9-46cb-a534-56a4d6233b4a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic6cae8b47EASTUS2EUAP\",\r\n \"name\": \"egcrudrunnerqueuetopic6cae8b47EASTUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"417e0452-37c5-48e2-b877-7fff5809d400\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-centraluseuap\",\r\n \"name\": \"eg-latency-runner-topic-centraluseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-usce-01.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"664d0716-acde-4c13-b008-b2e9c7031343\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-usce-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-usce-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-euap-usce-02.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d2f05cb8-c078-4f38-a22d-d01ae874e65a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-euap-usce-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-euap-usce-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccentraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6a1aac77-493c-4062-af7f-5c15b2c0350d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccentraluseuap\",\r\n \"name\": \"eglatencyrunnerqueuetopiccentraluseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-localtest-centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d0d5e8cb-cf40-4558-8415-0f5f6a0229f8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-localtest-centraluseuap\",\r\n \"name\": \"eg-latency-runner-topic-localtest-centraluseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-5425.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"44e4d2e9-8c05-4538-825e-668abd212739\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7662/providers/Microsoft.EventGrid/topics/sdk-Topic-5425\",\r\n \"name\": \"sdk-Topic-5425\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-1063.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4890cac3-21b1-4a8d-875f-7018e2fff9c8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1459/providers/Microsoft.EventGrid/topics/sdk-Topic-1063\",\r\n \"name\": \"sdk-Topic-1063\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8870.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"78b22f13-386f-415b-8630-98ebf810b247\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1399/providers/Microsoft.EventGrid/topics/sdk-Topic-8870\",\r\n \"name\": \"sdk-Topic-8870\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4138.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a36cd511-0f06-4cad-829d-08db1b67ef4f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4805/providers/Microsoft.EventGrid/topics/sdk-Topic-4138\",\r\n \"name\": \"sdk-Topic-4138\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-euap-usce-01.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4833073c-21d1-4424-9789-8a00f6b4822f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-euap-usce-01\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-euap-usce-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kal2020testce2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CloudEventSchemaV1_0\",\r\n \"metricResourceId\": \"7b2cd523-b9aa-49ab-8e49-59eae1adeb48\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest/providers/Microsoft.EventGrid/topics/kal2020testCE2\",\r\n \"name\": \"kal2020testCE2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-5763.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"272e5de8-0e14-44ce-93d5-e5c3a4a44877\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-652/providers/Microsoft.EventGrid/topics/sdk-Topic-5763\",\r\n \"name\": \"sdk-Topic-5763\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8360.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c4b48343-b16c-41e4-83b5-294bf714ea4e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4537/providers/Microsoft.EventGrid/topics/sdk-Topic-8360\",\r\n \"name\": \"sdk-Topic-8360\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-6106.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"437820fe-dda5-4a85-ba66-8d0b51cc915b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1252/providers/Microsoft.EventGrid/topics/sdk-Topic-6106\",\r\n \"name\": \"sdk-Topic-6106\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8410.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"609d8baa-b1bd-46d3-8d6e-d750a101b057\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1131/providers/Microsoft.EventGrid/topics/sdk-Topic-8410\",\r\n \"name\": \"sdk-Topic-8410\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-2528.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8c108c12-97f7-4da3-97ed-11ac6d24a00a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-7017/providers/Microsoft.EventGrid/topics/sdk-Topic-2528\",\r\n \"name\": \"sdk-Topic-2528\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-5500.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d5de5f29-60f5-453d-81a4-9831d2d85159\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"replacedTag1\": \"replacedValue1\",\r\n \"replacedTag2\": \"replacedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-3903/providers/Microsoft.EventGrid/topics/sdk-Topic-5500\",\r\n \"name\": \"sdk-Topic-5500\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-897.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4e070dea-71c7-450a-bbb5-00b09529a985\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-2321/providers/Microsoft.EventGrid/topics/sdk-Topic-897\",\r\n \"name\": \"sdk-Topic-897\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-924.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"f894170f-8ab4-4d6d-b437-0e031dd7807a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-9226/providers/Microsoft.EventGrid/topics/sdk-Topic-924\",\r\n \"name\": \"sdk-Topic-924\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7352.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"5cb2737e-0772-4765-9202-23ab9034a4ef\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8624/providers/Microsoft.EventGrid/topics/sdk-Topic-7352\",\r\n \"name\": \"sdk-Topic-7352\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-8689.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"49e99522-1ac6-4450-9d52-79dbfd0f7b01\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5152/providers/Microsoft.EventGrid/topics/sdk-Topic-8689\",\r\n \"name\": \"sdk-Topic-8689\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4248.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"f4e70de6-3bcc-4fce-97d8-9ecd6f3d5524\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-4621/providers/Microsoft.EventGrid/topics/sdk-Topic-4248\",\r\n \"name\": \"sdk-Topic-4248\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://trytopicbug1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8ce545c9-6d19-4a75-8e36-4115ddda7207\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/tryTopicBug1\",\r\n \"name\": \"tryTopicBug1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://amdtesttopic500delete.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"10bc049a-5303-4dd0-a2c2-6cbe7dcd01e8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/amdtesttopic500delete\",\r\n \"name\": \"amdtesttopic500delete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://amdtesttopic600delete.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"942cd5ae-c76a-4b96-ad54-4cf8c1b113f7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/amdtesttopic600delete\",\r\n \"name\": \"amdtesttopic600delete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://amdtesttopic999delete.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fa541463-b96f-4d50-94eb-e587d8dd07e3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/amdtesttopic999delete\",\r\n \"name\": \"amdtesttopic999delete\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://trytopicbug2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"48b18a8e-0970-475c-9cc5-bdca5fe7d431\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/tryTopicBug2\",\r\n \"name\": \"tryTopicBug2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/pet-a\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/VKUKKE-PRIVATELINK/providers/Microsoft.EventGrid/topics/TOPICNAME/privateEndpointConnections/PET-A.505CD90E-5F91-483B-972F-D29C642D02C9\",\r\n \"name\": \"pet-a-a\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4511d1a-a811-47e8-93c3-f5f7559d4be7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/topicName\",\r\n \"name\": \"topicName\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-4746.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"82f40471-c9fb-4a31-83e1-cdf01dd82d53\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-5773/providers/Microsoft.EventGrid/topics/sdk-Topic-4746\",\r\n \"name\": \"sdk-Topic-4746\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-3458.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"89ca54c5-a786-4019-a688-56ac25313255\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8118/providers/Microsoft.EventGrid/topics/sdk-Topic-3458\",\r\n \"name\": \"sdk-Topic-3458\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://example-ipfirewallrg.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a5c5f2d7-37c3-4c9c-b35c-8a717e3fee3d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"0.0.0.0/0\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg/providers/Microsoft.EventGrid/topics/example-ipfirewallrg\",\r\n \"name\": \"example-ipfirewallrg\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://ipfirewalltopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"50188545-ae6a-41f2-a6cd-15904dca8290\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": [\r\n {\r\n \"ipMask\": \"10.0.0.0/8\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"10.1.0.0/16\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-ipfirewallRg/providers/Microsoft.EventGrid/topics/ipfirewalltopic\",\r\n \"name\": \"ipfirewalltopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic123.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1c9e75b1-81bb-49d4-887b-50450bda762a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic123\",\r\n \"name\": \"testTopic123\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic12341234.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5ebaaa27-a8c9-4e74-a3bf-210e4a778e40\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Dept\": \"IT\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic12341234\",\r\n \"name\": \"testTopic12341234\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic12341234xxy.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0d3c9169-f6d0-417e-8060-3467386a9da2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic12341234xxy\",\r\n \"name\": \"testTopic12341234xxy\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopic12341234xxyzz.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"29b6c894-01a1-4602-8586-d7e14f6c394c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"Dept\": \"Finance\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopic12341234xxyzz\",\r\n \"name\": \"testTopic12341234xxyzz\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicdisabled.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2ce0d8e9-db8c-41c3-8538-9accdd9ed2f6\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Dept\": \"Finance\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testTopicDisabled\",\r\n \"name\": \"testTopicDisabled\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtopicprivatelink1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d5d8a66b-cc30-4d7e-a016-db20e3b3a0cf\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testtopicprivatelink1\",\r\n \"name\": \"testtopicprivatelink1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://cli-test-topic1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0507276d-7391-4271-b7f8-b25251e4a96f\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/cli-test-topic1\",\r\n \"name\": \"cli-test-topic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://cli-test-topic-2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"05bf9693-48c8-4fab-b56d-bcacc3d9c48f\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/cli-test-topic-2\",\r\n \"name\": \"cli-test-topic-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://cli2gy57xsc4xushkakn3jx5vw54sj2agzygn3fa.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d8547752-74be-450c-95bd-d066d97ef945\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgfv24q33o76ogvalblokyji6yq5wkq73zh46rbll46f2t5ecoi27opgka2o43h7ucj/providers/Microsoft.EventGrid/topics/cli2gy57xsc4xushkakn3jx5vw54sj2agzygn3fa\",\r\n \"name\": \"cli2gy57xsc4xushkakn3jx5vw54sj2agzygn3fa\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://cli2ei2dp7g5zqr4bmlk7c5wprkhcdmxsiqupu6o.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"593fd40d-e1c7-4034-9a03-2024c852e0f0\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rggcc55tai5oiuqvjnshrbiaglcmym3cftsfzbuh6p57rjpmlgixaq5nmzgnd6uxiib/providers/Microsoft.EventGrid/topics/cli2ei2dp7g5zqr4bmlk7c5wprkhcdmxsiqupu6o\",\r\n \"name\": \"cli2ei2dp7g5zqr4bmlk7c5wprkhcdmxsiqupu6o\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://cli6agnrxgvh52jnqebtlee4umoe2ayu7prijfzu.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f7e661bd-1928-47bc-af92-6d99d43c7917\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rgaddf74wsueu7djqpo5xdxyqzszcvzeedzuifh7ovscpo5andvv4atxdttfzh5zsf7/providers/Microsoft.EventGrid/topics/cli6agnrxgvh52jnqebtlee4umoe2ayu7prijfzu\",\r\n \"name\": \"cli6agnrxgvh52jnqebtlee4umoe2ayu7prijfzu\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://clive7eq5iqjlk3w5dgnko7ei5ks2kg6xmdpbzmd.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"992514a3-a168-4473-b395-7a86f9e63512\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rganyuyh2nmpcguctw5jy52fmpd7xc2i3xydnhceykv7v5ethjg6gjjfbddvyvpjriz/providers/Microsoft.EventGrid/topics/clive7eq5iqjlk3w5dgnko7ei5ks2kg6xmdpbzmd\",\r\n \"name\": \"clive7eq5iqjlk3w5dgnko7ei5ks2kg6xmdpbzmd\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://cliylfzhiwr7ul7ue6ihlymzmjjygku7peqws2ue.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"feee207a-7db0-4d7a-8340-a538addd2204\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/clitest.rg6diqvzcgaw2oa7p7imz4q4dpwmvzbowgegjtls5ui4oikd7erncogiwxam6gh6xvn/providers/Microsoft.EventGrid/topics/cliylfzhiwr7ul7ue6ihlymzmjjygku7peqws2ue\",\r\n \"name\": \"cliylfzhiwr7ul7ue6ihlymzmjjygku7peqws2ue\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-msi-centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"48d4c61d-e3fe-48f6-8948-98e6bd657975\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-msi-centraluseuap\",\r\n \"name\": \"eg-latency-runner-topic-msi-centraluseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-msi-centraluseuap2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d597ccde-e561-4722-8152-62fe6723ef06\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-msi-centraluseuap2\",\r\n \"name\": \"eg-latency-runner-topic-msi-centraluseuap2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparkmsi.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d39e7c8c-c3a1-462a-a527-547a21f65d3c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/mparkmsi\",\r\n \"name\": \"mparkmsi\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparkmsi2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"444ec80e-afb0-4b10-9cc0-d3b81b2f4a84\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/mparkmsi2\",\r\n \"name\": \"mparkmsi2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://noktesttopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4b53558a-16ea-42eb-a4b2-fd9fb9d53238\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/topics/noktesttopic\",\r\n \"name\": \"noktesttopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicbugbash1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ec195b05-cf56-41d8-ada5-8943f75d26c4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/topicBugBash1\",\r\n \"name\": \"topicBugBash1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitesttopickishp5.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c3932179-fd1d-46a4-811b-14cbdb4f54cf\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/topics/msitesttopickishp5\",\r\n \"name\": \"msitesttopickishp5\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitesttopickishp6.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"845d7117-2eda-4f83-9528-2b5f517acb98\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/topics/msitesttopickishp6\",\r\n \"name\": \"msitesttopickishp6\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testidentittytopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"046c0799-6dbf-49da-9201-1736d35d9872\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testIdentittyTopic\",\r\n \"name\": \"testIdentittyTopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://tpoicwithnoidentity.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a796168d-fc36-4463-8923-f75f878b39d3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/tpoicWithNoIdentity\",\r\n \"name\": \"tpoicWithNoIdentity\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://tpoicwithnoidentity2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b5a94eab-3337-44b9-a264-8c1dbb115b13\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/tpoicWithNoIdentity2\",\r\n \"name\": \"tpoicWithNoIdentity2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1/providers/Microsoft.Network/privateEndpoints/example-PrivateEndpoint\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"this is desc2\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2/providers/Microsoft.EventGrid/topics/examplePrivatelinktopic/privateEndpointConnections/example-PrivateEndpoint.6d90cf76-a022-452c-9994-6dac62a50c99\",\r\n \"name\": \"example-PrivateEndpoint.6d90cf76-a022-452c-9994-6dac62a50c99\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://exampleprivatelinktopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1281f69e-f20a-489f-a20e-1eac35233da9\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2/providers/Microsoft.EventGrid/topics/examplePrivatelinktopic\",\r\n \"name\": \"examplePrivatelinktopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicidentity1234test.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ecfa0601-2808-45b8-b55c-8371f020cc20\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/topicIdentity1234Test\",\r\n \"name\": \"topicIdentity1234Test\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicidentity1234test1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c24ebfa3-b6fc-4076-94c2-b7cb93f21452\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/topicIdentity1234Test1\",\r\n \"name\": \"topicIdentity1234Test1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://msitesttopic1.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"af7092f7-04eb-4383-8b2b-bb61a0bea7cb\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centralus euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msibugbash/providers/Microsoft.EventGrid/topics/msitesttopic1\",\r\n \"name\": \"msitesttopic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.Network/privateEndpoints/mparkpe2\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/mparklink/privateEndpointConnections/mparkpe2.06ef22c1-ae0b-4ab5-be56-eca4301caf7f\",\r\n \"name\": \"mparkpe2.06ef22c1-ae0b-4ab5-be56-eca4301caf7f\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparklink.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5ba0e385-f792-4d01-a850-c42ea13ba383\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": []\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/mparklink\",\r\n \"name\": \"mparklink\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://activitylogstopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"08c51e4b-cfe9-4ebb-acc7-46c41d13d886\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/topics/activitylogstopic\",\r\n \"name\": \"activitylogstopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic3b7fc1d4centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"cd0436a4-9a11-4452-82e7-2308a5715899\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/egcrudrunnertopic3b7fc1d4CentralUSEUAP\",\r\n \"name\": \"egcrudrunnertopic3b7fc1d4CentralUSEUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-auc2-01.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-auc2-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-auc2-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-auc2-02.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-auc2-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-auc2-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-australiacentral2.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-australiacentral2\",\r\n \"name\": \"eg-latency-runner-topic-australiacentral2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicaustraliacentral2.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicaustraliacentral2\",\r\n \"name\": \"eglatencyrunnerqueuetopicaustraliacentral2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicc2f8f36eaustraliacentral2.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicc2f8f36eAustraliaCentral2\",\r\n \"name\": \"egcrudrunnerqueuetopicc2f8f36eAustraliaCentral2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicdd4e4412australiacentral2.australiacentral2-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/topics/egcrudrunnertopicdd4e4412AustraliaCentral2\",\r\n \"name\": \"egcrudrunnertopicdd4e4412AustraliaCentral2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-frso-02.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-frso-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-frso-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-frso-01.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-frso-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-frso-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-francesouth.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-francesouth\",\r\n \"name\": \"eg-latency-runner-topic-francesouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicfrancesouth.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicfrancesouth\",\r\n \"name\": \"eglatencyrunnerqueuetopicfrancesouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic348d5d74francesouth.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic348d5d74FranceSouth\",\r\n \"name\": \"egcrudrunnerqueuetopic348d5d74FranceSouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopica3aecfb2francesouth.francesouth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/topics/egcrudrunnertopica3aecfb2FranceSouth\",\r\n \"name\": \"egcrudrunnertopica3aecfb2FranceSouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicsafwest.southafricawest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicsafwest\",\r\n \"name\": \"eglatencyrunnerqueuetopicsafwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-safw-02.southafricawest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-safw-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-safw-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-safw-01.southafricawest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-safw-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-safw-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-safwest.southafricawest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-safwest\",\r\n \"name\": \"eg-latency-runner-topic-safwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicb0b57346southafricawest.southafricawest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/topics/egcrudrunnertopicb0b57346SouthAfricaWest\",\r\n \"name\": \"egcrudrunnertopicb0b57346SouthAfricaWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uaec-01.uaecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uaec-01\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uaec-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-eg-prod-uaec-02.uaecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-eg-prod-uaec-02\",\r\n \"name\": \"eg-latency-runner-topic-eg-prod-uaec-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-uaecentral.uaecentral-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-uaecentral\",\r\n \"name\": \"eg-latency-runner-topic-uaecentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdeleteswwe.switzerlandwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"switzerlandwest\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testdeleteswwe\",\r\n \"name\": \"testdeleteswwe\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic14c46b3dswitzerlandwest.switzerlandwest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Switzerland West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandWest/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic14c46b3dSwitzerlandWest\",\r\n \"name\": \"egcrudrunnerqueuetopic14c46b3dSwitzerlandWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdeletegeno.germanynorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"germanynorth\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testdeletegeno\",\r\n \"name\": \"testdeletegeno\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicf266fa79germanynorth.germanynorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicf266fa79GermanyNorth\",\r\n \"name\": \"egcrudrunnerqueuetopicf266fa79GermanyNorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic61c14c64germanynorth.germanynorth-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Germany North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth/providers/Microsoft.EventGrid/topics/egcrudrunnertopic61c14c64GermanyNorth\",\r\n \"name\": \"egcrudrunnertopic61c14c64GermanyNorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testdocdbnowe.norwaywest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"norwaywest\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testtobedeleted/providers/Microsoft.EventGrid/topics/testDocDbnowe\",\r\n \"name\": \"testDocDbnowe\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-norwaywest.norwaywest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-norwaywest\",\r\n \"name\": \"eg-latency-runner-topic-norwaywest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicnorwaywest.norwaywest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicnorwaywest\",\r\n \"name\": \"eglatencyrunnerqueuetopicnorwaywest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-nowe-02.norwaywest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-nowe-02\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-nowe-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-name-eg-prod-nowe-01.norwaywest-1.eventgrid.azure.net/api/events\"\r\n },\r\n \"location\": \"Norway West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-name-eg-prod-nowe-01\",\r\n \"name\": \"eg-latency-runner-topic-name-eg-prod-nowe-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egrunnercustomtopicwestus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1d662511-cf3d-4896-83a6-f5cf44ad70c9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/egrunnercustomtopicwestus2\",\r\n \"name\": \"egrunnercustomtopicwestus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopicwestus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"47489ef8-33de-486f-a09c-b3ac13836880\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopicwestus2\",\r\n \"name\": \"eglatencyrunnercustomtopicwestus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"265949db-8739-4646-8816-f3e310f58fc9\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-west-us-2\",\r\n \"name\": \"eg-latency-runner-custom-topic-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-custom-topic-ce59084b-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3525bd77-df7b-4d60-83f5-3a40d484d1bc\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-crud-runner-custom-topic-ce59084b-West-US-2\",\r\n \"name\": \"eg-crud-runner-custom-topic-ce59084b-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f35cdcf9-fd7e-4362-b119-ce8fb7b43fe5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-west-us-2\",\r\n \"name\": \"eg-latency-runner-topic-west-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-7aa1fcc4-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"163416df-1ed9-48ce-9b90-e663813c683f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-7aa1fcc4-West-US-2\",\r\n \"name\": \"eg-crud-runner-queue-topic-7aa1fcc4-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-1e33851d-west-us-2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c28a517f-9eb5-49dd-8fe2-5f77328513bd\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-1e33851d-West-US-2\",\r\n \"name\": \"eg-crud-runner-topic-1e33851d-West-US-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicwestus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7d669fa1-0238-4cbd-9ba5-e60dd39a2f26\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicwestus2\",\r\n \"name\": \"eglatencyrunnerqueuetopicwestus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-prod-usw2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"571269b4-1b0c-4008-a6b1-886e4061205c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-prod-usw2\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-prod-usw2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic6afdede1westus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"10740b58-993a-46e8-8e6a-7a32a1a6943f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/EventGridRunnerTestResourceGroup/providers/Microsoft.EventGrid/topics/egarmrunnertopic6afdede1WestUS2\",\r\n \"name\": \"egarmrunnertopic6afdede1WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicf2cbb906westus2.westus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"391caf26-a7ec-4c38-b456-33d514115e44\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestUS2/providers/Microsoft.EventGrid/topics/egcrudrunnertopicf2cbb906WestUS2\",\r\n \"name\": \"egcrudrunnertopicf2cbb906WestUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopiceastus.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8de93ac0-d1b6-4272-852c-38d388c2602d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopiceastus\",\r\n \"name\": \"eglatencyrunnercustomtopiceastus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-east-us.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"df6ac2d8-2055-4461-a525-50259cee4f4e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-east-us\",\r\n \"name\": \"eg-latency-runner-custom-topic-east-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-east-us.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d597e4ca-b3ea-4838-8196-46feb771d37e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-east-us\",\r\n \"name\": \"eg-latency-runner-topic-east-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiceastus.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"aa9a71ac-592d-462c-85e5-185e0bf0f48e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiceastus\",\r\n \"name\": \"eglatencyrunnerqueuetopiceastus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/tests\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/bmteustopic1/privateEndpointConnections/tests.66fc1f31-b19f-4ba6-b07f-d69725518044\",\r\n \"name\": \"tests.66fc1f31-b19f-4ba6-b07f-d69725518044\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/bmttestpl3\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/bmteustopic1/privateEndpointConnections/bmttestpl3.b24745e5-3a87-4d20-bb0d-cfa9ac04811b\",\r\n \"name\": \"bmttestpl3.b24745e5-3a87-4d20-bb0d-cfa9ac04811b\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/bmttestpl2\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/bmteustopic1/privateEndpointConnections/bmttestpl2.85d95ce2-60ff-4f39-a6eb-67f19e91ac21\",\r\n \"name\": \"bmttestpl2.85d95ce2-60ff-4f39-a6eb-67f19e91ac21\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/bmttestpl\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/bmteustopic1/privateEndpointConnections/bmttestpl.3f842295-25f0-4e17-b587-12c9107f9f6c\",\r\n \"name\": \"bmttestpl.3f842295-25f0-4e17-b587-12c9107f9f6c\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/bmtpe1\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/bmteustopic1/privateEndpointConnections/bmtpe1.149695bb-75c3-4774-9593-fea717abf423\",\r\n \"name\": \"bmtpe1.149695bb-75c3-4774-9593-fea717abf423\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://bmteustopic1.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2edbdbff-ff8a-4b24-b6c8-86f4f039aefd\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/bmteustopic1\",\r\n \"name\": \"bmteustopic1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicbea9b0aeeastus.eastus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b06b6df2-0b83-46b0-a51c-d8a35121998d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS/providers/Microsoft.EventGrid/topics/egcrudrunnertopicbea9b0aeEastUS\",\r\n \"name\": \"egcrudrunnertopicbea9b0aeEastUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopicwestus.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"cb2d4be6-1582-4207-9e4f-56870009fec1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopicwestus\",\r\n \"name\": \"eglatencyrunnercustomtopicwestus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-west-us.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"95856df7-ad30-40bc-b5c4-217377ddf1f2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-west-us\",\r\n \"name\": \"eg-latency-runner-custom-topic-west-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-west-us.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9dcbc2f9-70d6-4fd6-9fcd-2afdf18fe264\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-west-us\",\r\n \"name\": \"eg-latency-runner-topic-west-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicwestus.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"606d42db-eeb7-41c8-a1d8-0eb2134e6552\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicwestus\",\r\n \"name\": \"eglatencyrunnerqueuetopicwestus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-prod-uswe.westus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"596b5bc3-3a6e-4a6b-8b07-bcd4e9f80c0c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUSWest/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-prod-uswe\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-prod-uswe\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopiccentralus.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"529932bc-2e08-451d-a81a-dde6ad8f3cc2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopiccentralus\",\r\n \"name\": \"eglatencyrunnercustomtopiccentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-central-us.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e63ed804-86b6-48c5-9fb3-fbc637926be7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-central-us\",\r\n \"name\": \"eg-latency-runner-custom-topic-central-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-central-us.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0eb96b40-cfee-4699-8b6c-13cb541b71d6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-central-us\",\r\n \"name\": \"eg-latency-runner-topic-central-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccentralus.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ea26d994-e061-4d87-a857-4025f37495f3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccentralus\",\r\n \"name\": \"eglatencyrunnerqueuetopiccentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-prod-usce-blockstorage-perf-topic.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"912ef55f-bf72-4e8b-8511-b273ed7c8600\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centralus\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-prod-usce-blockstorage/providers/Microsoft.EventGrid/topics/eg-prod-usce-blockstorage-perf-topic\",\r\n \"name\": \"eg-prod-usce-blockstorage-perf-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.Network/privateEndpoints/mparktest2\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/mparkpetest/privateEndpointConnections/mparktest2.10ae2e7f-6fbb-47c2-81e2-e65189395da8\",\r\n \"name\": \"mparktest2.10ae2e7f-6fbb-47c2-81e2-e65189395da8\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparkpetest.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a15c942b-6b41-4b7e-8149-1b970aee127f\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"test\": \"test\",\r\n \"test2\": \"test2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/mparkpetest\",\r\n \"name\": \"mparkpetest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-prod-usce.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"467ba4e2-d5cb-43aa-b541-26fada5d67cd\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-prod-usce\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-prod-usce\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://activitylogs.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"36d200cd-283d-4125-95f2-11f76725cea1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/diagnosticlogstestingtobedeleted/providers/Microsoft.EventGrid/topics/activitylogs\",\r\n \"name\": \"activitylogs\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testtest1.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fcd3e3b6-4db8-4e5d-a019-465f55935204\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"86d36f1d-3c51-4cd3-a5b3-8ddce35086f4\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centralus\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/msi/providers/Microsoft.EventGrid/topics/testtest1\",\r\n \"name\": \"testtest1\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic58502b3fcentralus.centralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4e4e6302-7636-4046-a39a-d8993ec6088e\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnertopic58502b3fCentralUS\",\r\n \"name\": \"egcrudrunnertopic58502b3fCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopiceastus2.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"16596486-580f-4f04-9338-ab2d070a484b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US 2\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopiceastus2\",\r\n \"name\": \"eglatencyrunnercustomtopiceastus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-east-us-2.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c0788e60-3fa3-4b1f-be6d-c5b2b8fdc78c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-east-us-2\",\r\n \"name\": \"eg-latency-runner-topic-east-us-2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiceastus2.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"023bd1a9-75e5-4ab5-85c1-05d994ac869a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiceastus2\",\r\n \"name\": \"eglatencyrunnerqueuetopiceastus2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicc7556a85eastus2.eastus2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2dd90049-a28c-4453-9281-e83934ea0300\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicc7556a85EastUS2\",\r\n \"name\": \"egcrudrunnerqueuetopicc7556a85EastUS2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egrunnercustomtopicwestcentralus.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e703a8a7-3125-4820-90ba-50a7ed4e57ee\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/egrunnercustomtopicwestcentralus\",\r\n \"name\": \"egrunnercustomtopicwestcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnercustomtopicwestcentralus.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8520fa7c-4067-43f5-bcc7-c84cb18cb9fe\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnercustomtopicwestcentralus\",\r\n \"name\": \"eglatencyrunnercustomtopicwestcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-custom-topic-west-central-us.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2c83de7f-0a1b-46e0-85d0-717ba1e9c798\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-custom-topic-west-central-us\",\r\n \"name\": \"eg-latency-runner-custom-topic-west-central-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-west-central-us.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e1a8935c-5ab7-44ac-a01b-0b10a616afe7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-west-central-us\",\r\n \"name\": \"eg-latency-runner-topic-west-central-us\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-9e81fd7b-west-central-us.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a7a0bc9f-f537-40b2-a3d4-44190b01ef43\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-9e81fd7b-West-Central-US\",\r\n \"name\": \"eg-crud-runner-topic-9e81fd7b-West-Central-US\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicwestcentralus.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e023549b-ef2c-48a6-8f23-120b8ae968f8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicwestcentralus\",\r\n \"name\": \"eglatencyrunnerqueuetopicwestcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-prod-uswc-02.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8b1b2dd9-10d2-40fd-8bc9-2e64cbae3b45\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-prod-uswc-02\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-prod-uswc-02\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egarmrunnertopic66c7e83cwestcentralus.westcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"990f26bd-ca05-4074-9a81-d84bfee3476b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridArmRunnerWestCentralUS/providers/Microsoft.EventGrid/topics/egarmrunnertopic66c7e83cWestCentralUS\",\r\n \"name\": \"egarmrunnertopic66c7e83cWestCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b573de9e-d5dc-4e2c-a35a-664211c39a96\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicdd236bd6WestCentralUS\",\r\n \"name\": \"egcrudrunnerqueuetopicdd236bd6WestCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-australiaeast.australiaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"25d669c2-5d9c-490b-909e-d5f013279771\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-australiaeast\",\r\n \"name\": \"eg-latency-runner-topic-australiaeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-3d6fcc2c-australia-east.australiaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"75faf7f6-614d-4dce-97b5-2af61cea6ba5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"ff287b63-eb1f-42fa-9614-f29df53c9189\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-3d6fcc2c-Australia-East\",\r\n \"name\": \"eg-crud-runner-queue-topic-3d6fcc2c-Australia-East\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-16d21dfe-australia-east.australiaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7a4be7d9-314f-453f-982b-f15bf64f8c46\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia East\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-16d21dfe-Australia-East\",\r\n \"name\": \"eg-crud-runner-topic-16d21dfe-Australia-East\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicaustraliaeast.australiaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7f00808f-2c7b-429e-acd8-7c44a41fafac\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicaustraliaeast\",\r\n \"name\": \"eglatencyrunnerqueuetopicaustraliaeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic3ed0cdb8australiaeast.australiaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f6b72ff1-e8da-40bf-801b-c119dc473cd8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaEast/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic3ed0cdb8AustraliaEast\",\r\n \"name\": \"egcrudrunnerqueuetopic3ed0cdb8AustraliaEast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-australiasoutheast.australiasoutheast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"da914610-741f-4fba-86a9-786939dd025c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-australiasoutheast\",\r\n \"name\": \"eg-latency-runner-topic-australiasoutheast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicaustraliasoutheast.australiasoutheast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d1569b81-733b-4b63-be20-d0bf4b9df447\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicaustraliasoutheast\",\r\n \"name\": \"eglatencyrunnerqueuetopicaustraliasoutheast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic1b8f29ccaustraliasoutheast.australiasoutheast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"199df241-f1ca-4593-b3c5-b154fc6935b2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic1b8f29ccAustraliaSoutheast\",\r\n \"name\": \"egcrudrunnerqueuetopic1b8f29ccAustraliaSoutheast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicb6ce5822australiasoutheast.australiasoutheast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"70b04c4c-cc53-4194-8d83-4565b215d2f1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Southeast\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaSoutheast/providers/Microsoft.EventGrid/topics/egcrudrunnertopicb6ce5822AustraliaSoutheast\",\r\n \"name\": \"egcrudrunnertopicb6ce5822AustraliaSoutheast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-australiacentral.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e4bb4e79-fad1-4f21-b937-6d85b2ef05ef\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-australiacentral\",\r\n \"name\": \"eg-latency-runner-topic-australiacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-fdc3476b-australia-central.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a0985f1a-5e7c-4fcc-96f8-cd214113f5ae\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-fdc3476b-Australia-Central\",\r\n \"name\": \"eg-crud-runner-topic-fdc3476b-Australia-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicaustraliacentral.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a21fd622-2b64-4235-aad5-c3df53e7570d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicaustraliacentral\",\r\n \"name\": \"eglatencyrunnerqueuetopicaustraliacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicadbb8203australiacentral.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5fb2a7f9-bd4f-4e14-8c81-d56f07a349b7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicadbb8203AustraliaCentral\",\r\n \"name\": \"egcrudrunnerqueuetopicadbb8203AustraliaCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicce2eeac5australiacentral.australiacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"499f4af7-842d-46ad-9862-d543c4c09e58\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral/providers/Microsoft.EventGrid/topics/egcrudrunnertopicce2eeac5AustraliaCentral\",\r\n \"name\": \"egcrudrunnertopicce2eeac5AustraliaCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-japaneast.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9eba0c8e-bdf8-4f90-b4b7-49dd25367a11\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-japaneast\",\r\n \"name\": \"eg-latency-runner-topic-japaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-1e6b2191-japan-east.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3219859f-8856-4c7e-bbd7-855b92563566\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Japan East\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-1e6b2191-Japan-East\",\r\n \"name\": \"eg-crud-runner-queue-topic-1e6b2191-Japan-East\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicjapaneast.japaneast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"03192dcd-a0c1-4cc3-bfd1-c0f846ac49b5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicjapaneast\",\r\n \"name\": \"eglatencyrunnerqueuetopicjapaneast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dbac4522-d1e2-4f5e-888d-3de8b82792f8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Japan East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanEast/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic48e91134JapanEast\",\r\n \"name\": \"egcrudrunnerqueuetopic48e91134JapanEast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-japanwest.japanwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e0485990-2e95-4553-bee9-187c181e5e3b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-japanwest\",\r\n \"name\": \"eg-latency-runner-topic-japanwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-dd57ef29-japan-west.japanwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"476839b0-1560-49fc-86b3-c81d5656fd5f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Japan West\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-dd57ef29-Japan-West\",\r\n \"name\": \"eg-crud-runner-queue-topic-dd57ef29-Japan-West\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicjapanwest.japanwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"473e66de-bddc-46f4-a95e-ac4276fb4294\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicjapanwest\",\r\n \"name\": \"eglatencyrunnerqueuetopicjapanwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicded05f79japanwest.japanwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"588ad0b4-7006-4178-908c-5ec9ea1ec7fe\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicded05f79JapanWest\",\r\n \"name\": \"egcrudrunnerqueuetopicded05f79JapanWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicc3357937japanwest.japanwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3e9c2843-823e-46a1-a7b2-f513af83e6a3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Japan West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGJapanWest/providers/Microsoft.EventGrid/topics/egcrudrunnertopicc3357937JapanWest\",\r\n \"name\": \"egcrudrunnertopicc3357937JapanWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-west-europe.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"312de3f5-137c-4473-88b0-f15ba762b5be\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-west-europe\",\r\n \"name\": \"eg-latency-runner-topic-west-europe\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-f438994f-west-europe.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"643b7777-aeca-45be-8421-36ab22b5d837\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Europe\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-f438994f-West-Europe\",\r\n \"name\": \"eg-crud-runner-queue-topic-f438994f-West-Europe\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyqueuerunnertopicwesteurope.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f69aa0fa-be84-472e-a3b5-a5d01b3011ca\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/eglatencyqueuerunnertopicwesteurope\",\r\n \"name\": \"eglatencyqueuerunnertopicwesteurope\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopica9b09922westeurope.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c4346595-8b0e-407c-9b43-d67f43fe8794\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/egcrudrunnertopica9b09922WestEurope\",\r\n \"name\": \"egcrudrunnertopica9b09922WestEurope\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopiccaffb48ewesteurope.westeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7412d752-a41e-4fd2-882a-d97ae48f3e93\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestEurope/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopiccaffb48eWestEurope\",\r\n \"name\": \"egcrudrunnerqueuetopiccaffb48eWestEurope\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-north-europe.northeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1220abb3-e9b2-4037-90a5-cd963e7678bb\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-north-europe\",\r\n \"name\": \"eg-latency-runner-topic-north-europe\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicnortheurope.northeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b351feaf-0adb-4992-ad8e-a365b2a56b5d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicnortheurope\",\r\n \"name\": \"eglatencyrunnerqueuetopicnortheurope\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-prod-euno.northeurope-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f6deffec-761f-4fc4-ae18-ebd7e731816c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthEurope/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-prod-euno\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-prod-euno\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-southeast-asia.southeastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5dcec9dd-d68e-4957-8597-88bc577aa8a4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-southeast-asia\",\r\n \"name\": \"eg-latency-runner-topic-southeast-asia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-70775835-southeast-asia.southeastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1b61044f-a7d0-4a52-beab-a1ef2e2dc0fd\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-70775835-Southeast-Asia\",\r\n \"name\": \"eg-crud-runner-queue-topic-70775835-Southeast-Asia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyqueuerunnertopicsoutheastasia.southeastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6869839a-7669-4824-9de0-e9a091c12efc\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia/providers/Microsoft.EventGrid/topics/eglatencyqueuerunnertopicsoutheastasia\",\r\n \"name\": \"eglatencyqueuerunnertopicsoutheastasia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic3bb5efddsoutheastasia.southeastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1def4cf8-d1f3-4eb1-986c-c8cb62bba9a6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia/providers/Microsoft.EventGrid/topics/egcrudrunnertopic3bb5efddSoutheastAsia\",\r\n \"name\": \"egcrudrunnertopic3bb5efddSoutheastAsia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic41c7aeffsoutheastasia.southeastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f238c6ba-68ef-4035-b86b-c37287085ef1\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthEastAsia/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic41c7aeffSoutheastAsia\",\r\n \"name\": \"egcrudrunnerqueuetopic41c7aeffSoutheastAsia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-east-asia.eastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1f0ad62c-e871-4f55-b851-98acd864031c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-east-asia\",\r\n \"name\": \"eg-latency-runner-topic-east-asia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-5b42adc2-east-asia.eastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c084ab44-ffc1-4ad1-bfe7-4764474b5f9c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East Asia\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-5b42adc2-East-Asia\",\r\n \"name\": \"eg-crud-runner-queue-topic-5b42adc2-East-Asia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiceastasia.eastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5872658c-7e33-4d3f-8c85-4edab459a99b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiceastasia\",\r\n \"name\": \"eglatencyrunnerqueuetopiceastasia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-prod-asea.eastasia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"14130f1b-6338-43e8-bd96-cd3bea2790ee\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastAsia/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-prod-asea\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-prod-asea\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-northcentralus.northcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"708314d9-3d16-480a-9ead-ec72d6e414d8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-northcentralus\",\r\n \"name\": \"eg-latency-runner-topic-northcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-b373f9ee-north-central-us.northcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"84ae5e24-ac11-469c-8ec0-6d60e86bc448\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"North Central US\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-b373f9ee-North-Central-US\",\r\n \"name\": \"eg-crud-runner-topic-b373f9ee-North-Central-US\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicnorthcentralus.northcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"13e23b6f-f71f-4eda-aadc-e6cefdf37588\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicnorthcentralus\",\r\n \"name\": \"eglatencyrunnerqueuetopicnorthcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6f978440-71e0-4c1e-af74-043435c0c18f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGNorthCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnertopic396d98a0NorthCentralUS\",\r\n \"name\": \"egcrudrunnertopic396d98a0NorthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-southcentralus.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"eb7e36ba-ed64-4d2a-9e4e-d77879cf825b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-southcentralus\",\r\n \"name\": \"eg-latency-runner-topic-southcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicsouthcentralus.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"479e8731-17f3-408f-bbef-2e2cc6c856b7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicsouthcentralus\",\r\n \"name\": \"eglatencyrunnerqueuetopicsouthcentralus\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicd1b2b4b3southcentralus.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"95507401-973e-4335-b20a-158897eaa515\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicd1b2b4b3SouthCentralUS\",\r\n \"name\": \"egcrudrunnerqueuetopicd1b2b4b3SouthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicbf28d31bsouthcentralus.southcentralus-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"31d815b7-3461-47de-acdc-ba5ebcecb813\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthCentralUS/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicbf28d31bSouthCentralUS\",\r\n \"name\": \"egcrudrunnerqueuetopicbf28d31bSouthCentralUS\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-brazilsouth.brazilsouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7967de5a-4366-497a-a29a-cb4f41e024e7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-brazilsouth\",\r\n \"name\": \"eg-latency-runner-topic-brazilsouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicbrazilsouth.brazilsouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9644bddf-b842-43fd-9596-2174d0ba8c19\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGBrazilSouth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicbrazilsouth\",\r\n \"name\": \"eglatencyrunnerqueuetopicbrazilsouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-canadacentral.canadacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6a2ef129-3b60-4934-a17e-cc22669c0b9f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-canadacentral\",\r\n \"name\": \"eg-latency-runner-topic-canadacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-56b2c786-canada-central.canadacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ab1d6528-3463-4b81-82d8-7ed08b35a051\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-56b2c786-Canada-Central\",\r\n \"name\": \"eg-crud-runner-queue-topic-56b2c786-Canada-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccanadacentral.canadacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7ee5faca-50dc-48d5-be12-b9bb2e4abe8c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccanadacentral\",\r\n \"name\": \"eglatencyrunnerqueuetopiccanadacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic455710d5canadacentral.canadacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7fad3c32-051d-4733-8c39-593284865ba0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/egcrudrunnertopic455710d5CanadaCentral\",\r\n \"name\": \"egcrudrunnertopic455710d5CanadaCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicb19760eecanadacentral.canadacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"01957981-948d-49b5-9a30-f00cd5cf3e19\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Canada Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaCentral/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicb19760eeCanadaCentral\",\r\n \"name\": \"egcrudrunnerqueuetopicb19760eeCanadaCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-canadaeast.canadaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f0bb7025-cfa7-4d0c-931b-d09d7e6e56b8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-canadaeast\",\r\n \"name\": \"eg-latency-runner-topic-canadaeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccanadaeast.canadaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7df22574-c607-4057-bf87-c48317c49d67\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccanadaeast\",\r\n \"name\": \"eglatencyrunnerqueuetopiccanadaeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic2904b5c8canadaeast.canadaeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"275c1d56-ca34-4408-92f9-432a158ff515\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Canada East\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCanadaEast/providers/Microsoft.EventGrid/topics/egcrudrunnertopic2904b5c8CanadaEast\",\r\n \"name\": \"egcrudrunnertopic2904b5c8CanadaEast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-centralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"904df6e4-5626-4ff9-b4ef-1405a54d072f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-centralindia\",\r\n \"name\": \"eg-latency-runner-topic-centralindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccentralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"74991d35-3d92-44c8-b35b-e5a1a97b5d72\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccentralindia\",\r\n \"name\": \"eglatencyrunnerqueuetopiccentralindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicccd2c021centralindia.centralindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"532e3860-a3df-4cd2-856a-9ca385a447a6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicccd2c021CentralIndia\",\r\n \"name\": \"egcrudrunnerqueuetopicccd2c021CentralIndia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"52596ccf-4d55-4dc3-99fc-0427be3bbd88\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralIndia/providers/Microsoft.EventGrid/topics/egcrudrunnertopic31bb68aeCentralIndia\",\r\n \"name\": \"egcrudrunnertopic31bb68aeCentralIndia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-southindia.southindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"765d231c-56d6-44a2-ac7b-8f676fd132e7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-southindia\",\r\n \"name\": \"eg-latency-runner-topic-southindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-afb91465-south-india.southindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"46060697-bcda-42a5-b04d-2fc739a143c5\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South India\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-afb91465-South-India\",\r\n \"name\": \"eg-crud-runner-queue-topic-afb91465-South-India\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicsouthindia.southindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a88a944b-03d1-49c6-b351-180e711fb713\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicsouthindia\",\r\n \"name\": \"eglatencyrunnerqueuetopicsouthindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic239a63besouthindia.southindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bc06fa32-7044-4a79-b256-a50cb7ec62f0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/egcrudrunnertopic239a63beSouthIndia\",\r\n \"name\": \"egcrudrunnertopic239a63beSouthIndia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic8efe0df6southindia.southindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b65aeec3-0cb0-4de7-b4be-aab01588b1cd\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthIndia/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic8efe0df6SouthIndia\",\r\n \"name\": \"egcrudrunnerqueuetopic8efe0df6SouthIndia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-westindia.westindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e5b0a0de-5f5d-4a2c-b9e8-4adc1c68708c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-westindia\",\r\n \"name\": \"eg-latency-runner-topic-westindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-e8cd72b4-west-india.westindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1840f9b8-f6a7-46d7-b471-fd4e0a882fb2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West India\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-e8cd72b4-West-India\",\r\n \"name\": \"eg-crud-runner-queue-topic-e8cd72b4-West-India\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicwestindia.westindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"992b9c18-6a6b-4b06-91ef-3cb455dc4a50\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicwestindia\",\r\n \"name\": \"eglatencyrunnerqueuetopicwestindia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopica6871a3cwestindia.westindia-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b9481d73-c379-464e-96bd-e83e70da124b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopica6871a3cWestIndia\",\r\n \"name\": \"egcrudrunnerqueuetopica6871a3cWestIndia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"endpoint\": null,\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b6b48415-b70a-47db-a4e2-18c4c17e2bf6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"West India\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGWestIndia/providers/Microsoft.EventGrid/topics/egcrudrunnertopicba28fa9cWestIndia\",\r\n \"name\": \"egcrudrunnertopicba28fa9cWestIndia\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-francecentral.francecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ee7c1518-0604-47ab-b87d-b17fa021d9c8\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-francecentral\",\r\n \"name\": \"eg-latency-runner-topic-francecentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-b08055b1-france-central.francecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ce9e9dcf-c1da-43ae-b350-7e9defc9b3d4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"France Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-b08055b1-France-Central\",\r\n \"name\": \"eg-crud-runner-queue-topic-b08055b1-France-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-d1259a6c-france-central.francecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a570d8db-7bc6-4c89-9113-340c9a939c35\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"France Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-d1259a6c-France-Central\",\r\n \"name\": \"eg-crud-runner-topic-d1259a6c-France-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicfrancecentral.francecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"91e636d2-87a7-4777-b668-d928a5449a64\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicfrancecentral\",\r\n \"name\": \"eglatencyrunnerqueuetopicfrancecentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic129ee221francecentral.francecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"905768a3-2b5c-4c3c-a7ca-d15970961af6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"France Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceCentral/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic129ee221FranceCentral\",\r\n \"name\": \"egcrudrunnerqueuetopic129ee221FranceCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-ukwest.ukwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4129c64-572e-4660-ab3a-d037efec4511\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-ukwest\",\r\n \"name\": \"eg-latency-runner-topic-ukwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-d916a6b6-uk-west.ukwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"7089683e-6dcf-450c-be7f-54114f3cfeaf\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK West\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-d916a6b6-UK-West\",\r\n \"name\": \"eg-crud-runner-queue-topic-d916a6b6-UK-West\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-topic-eccaa2c2-uk-west.ukwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6d96ed39-76ac-4be2-8f57-92faa8f41682\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK West\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eg-crud-runner-topic-eccaa2c2-UK-West\",\r\n \"name\": \"eg-crud-runner-topic-eccaa2c2-UK-West\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicukwest.ukwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"4aa25853-9d3d-4d5a-a1d0-dc7a36c873ac\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicukwest\",\r\n \"name\": \"eglatencyrunnerqueuetopicukwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic90c4afeeukwest.ukwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"8ffce4c1-3ffe-4801-b5c8-95dcc112e998\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic90c4afeeUKWest\",\r\n \"name\": \"egcrudrunnerqueuetopic90c4afeeUKWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic8c40f7a9ukwest.ukwest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f3e9de9d-c69e-4666-b12d-fcdea54cf8aa\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKWest/providers/Microsoft.EventGrid/topics/egcrudrunnertopic8c40f7a9UKWest\",\r\n \"name\": \"egcrudrunnertopic8c40f7a9UKWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-uksouth.uksouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"25c20503-f49c-4692-8cae-4e5be8e1a92f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-uksouth\",\r\n \"name\": \"eg-latency-runner-topic-uksouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicuksouth.uksouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9eb0384e-51e5-41a5-a0eb-72f5b4e4750f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicuksouth\",\r\n \"name\": \"eglatencyrunnerqueuetopicuksouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic4f5079ebuksouth.uksouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"434ab756-4037-4ac2-a6bb-f6360fb5b1ca\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/egcrudrunnertopic4f5079ebUKSouth\",\r\n \"name\": \"egcrudrunnertopic4f5079ebUKSouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic27add7bduksouth.uksouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"92423d31-b528-464f-94a7-78635846b31f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UK South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGUKSouth/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic27add7bdUKSouth\",\r\n \"name\": \"egcrudrunnerqueuetopic27add7bdUKSouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-koreacentral.koreacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c4c7c0b3-5b08-4e82-93e1-d0f1f954e057\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-koreacentral\",\r\n \"name\": \"eg-latency-runner-topic-koreacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-crud-runner-queue-topic-a7e75127-korea-central.koreacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"02bdd739-1637-4a36-9152-664ada2c89b4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Korea Central\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/topics/eg-crud-runner-queue-topic-a7e75127-Korea-Central\",\r\n \"name\": \"eg-crud-runner-queue-topic-a7e75127-Korea-Central\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopickoreacentral.koreacentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c2f2d713-c46b-4bf9-a7b7-1de7cd81da1c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Korea Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaCentral/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopickoreacentral\",\r\n \"name\": \"eglatencyrunnerqueuetopickoreacentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-koreasouth.koreasouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"e869f0b8-a306-4ef5-81bc-3df152f65585\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-koreasouth\",\r\n \"name\": \"eg-latency-runner-topic-koreasouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopickoreasouth.koreasouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f907c1c3-a8d3-4891-93b8-428030d311dd\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopickoreasouth\",\r\n \"name\": \"eglatencyrunnerqueuetopickoreasouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicdd7cf365koreasouth.koreasouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6121d138-a77b-48d2-9cf3-43560cae9edb\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Korea South\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGKoreaSouth/providers/Microsoft.EventGrid/topics/egcrudrunnertopicdd7cf365KoreaSouth\",\r\n \"name\": \"egcrudrunnertopicdd7cf365KoreaSouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicsafnorth.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ffcca753-fc71-404e-b315-c3340ca98477\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicsafnorth\",\r\n \"name\": \"eglatencyrunnerqueuetopicsafnorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-safnorth.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a909327b-f7b1-4f0e-b3b9-d2a583d95c83\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-safnorth\",\r\n \"name\": \"eg-latency-runner-topic-safnorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testsfnotopic.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0629b7ca-4fe8-4124-ab12-c470ec92ee02\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"southafricanorth\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/testsfnotopic\",\r\n \"name\": \"testsfnotopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicc4763971southafricanorth.southafricanorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"cea7a1e5-dd29-4ea7-afeb-78a252bd0e81\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Africa North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaNorth/providers/Microsoft.EventGrid/topics/egcrudrunnertopicc4763971SouthAfricaNorth\",\r\n \"name\": \"egcrudrunnertopicc4763971SouthAfricaNorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-uaenorth.uaenorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"34fd8b96-30dd-4eaa-85ec-ac1e014ecf0a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-uaenorth\",\r\n \"name\": \"eg-latency-runner-topic-uaenorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic26d3ee4duaenorth.uaenorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"552d8c31-dd91-4989-9436-7e6f1bccc337\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UAE North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEnorth/providers/Microsoft.EventGrid/topics/egcrudrunnertopic26d3ee4dUAENorth\",\r\n \"name\": \"egcrudrunnertopic26d3ee4dUAENorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicaab71d3fswitzerlandnorth.switzerlandnorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9bc858cf-04a7-4e68-9724-92fc3f32cc1f\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Switzerland North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSwitzerlandNorth/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicaab71d3fSwitzerlandNorth\",\r\n \"name\": \"egcrudrunnerqueuetopicaab71d3fSwitzerlandNorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopice842e9a6germanywestcentral.germanywestcentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45e6608e-9548-4118-944e-c6aa95e9f0a3\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Germany West Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopice842e9a6GermanyWestCentral\",\r\n \"name\": \"egcrudrunnerqueuetopice842e9a6GermanyWestCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic8fec2ff9germanywestcentral.germanywestcentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"af5db723-636a-42e3-a840-cb09ff04e009\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Germany West Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyWestCentral/providers/Microsoft.EventGrid/topics/egcrudrunnertopic8fec2ff9GermanyWestCentral\",\r\n \"name\": \"egcrudrunnertopic8fec2ff9GermanyWestCentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-norwayeast.norwayeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"a438980a-d707-4138-885e-d886023c1829\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Norway East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-norwayeast\",\r\n \"name\": \"eg-latency-runner-topic-norwayeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicnorwayeast.norwayeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"ea63e061-74ad-48e4-b04b-ec7caedc043d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Norway East\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicnorwayeast\",\r\n \"name\": \"eglatencyrunnerqueuetopicnorwayeast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopicea0407e6norwayeast.norwayeast-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"80679f52-910c-46ac-921b-eb9f14b4e68a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Norway East\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayEast/providers/Microsoft.EventGrid/topics/egcrudrunnertopicea0407e6NorwayEast\",\r\n \"name\": \"egcrudrunnertopicea0407e6NorwayEast\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sampletopic34.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55c51161-fe8c-4c42-bf9b-8097198d6802\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/SampleRg/providers/Microsoft.EventGrid/topics/SampleTopic34\",\r\n \"name\": \"SampleTopic34\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egrunnercustomtopiceastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bf5513b5-abc6-4ac5-9d09-455c19c628c6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/egrunnercustomtopiceastus2euap\",\r\n \"name\": \"egrunnercustomtopiceastus2euap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-east-us-2-euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f274589b-bbe5-4eb6-88c7-ad4edd625021\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-east-us-2-euap\",\r\n \"name\": \"eg-latency-runner-topic-east-us-2-euap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiceastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"55ac8913-6e0c-4fd5-830b-9b748fc9833a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiceastus2euap\",\r\n \"name\": \"eglatencyrunnerqueuetopiceastus2euap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-sla-control-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"736b24e4-e936-41a2-b3f2-a88ee48ae47a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-sla-control-topic\",\r\n \"name\": \"eg-euap-use2-sla-control-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-delay-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"30d2e26b-b11c-46bf-ace9-a8f51c7e262d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-delay-queues-topic\",\r\n \"name\": \"eg-euap-use2-delay-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-eventsizes-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"3f97e836-9d95-45af-8192-1065ead47c1b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-eventsizes-topic\",\r\n \"name\": \"eg-euap-use2-eventsizes-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-batching-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"88fd4aff-d632-4439-830f-b340682d4f0d\",\r\n \"publicNetworkAccess\": \"Enabled\",\r\n \"inboundIpRules\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-batching-topic\",\r\n \"name\": \"eg-euap-use2-batching-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-dedicated-queues-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"645646c3-b707-4eef-831d-2db8ff4547fc\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"East US 2 EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/eg-euap-use2-dedicated-queues-topic\",\r\n \"name\": \"eg-euap-use2-dedicated-queues-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-euap-use2-move-extents-topic.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"f9fdecc7-afd3-4723-b985-5fb5075230fa\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {\r\n \"newtag\": \"valuetag\",\r\n \"tag2\": \"tag2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/eg-euap-use2/providers/Microsoft.EventGrid/topics/eg-euap-use2-move-extents-topic\",\r\n \"name\": \"eg-euap-use2-move-extents-topic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparktopic-eastuseuap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"06d46586-b10b-448a-847c-38f50077bc4b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/mparkrg/providers/Microsoft.EventGrid/topics/mparktopic-eastuseuap\",\r\n \"name\": \"mparktopic-eastuseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic5249ad13eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"60ff2761-e3a1-4cf4-9067-a0501c502b89\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic5249ad13EASTUS2EUAP\",\r\n \"name\": \"egcrudrunnerqueuetopic5249ad13EASTUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic517056b3eastus2euap.eastus2euap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5373aea2-93c2-4386-89ef-006302946315\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGEastUS2EUAP/providers/Microsoft.EventGrid/topics/egcrudrunnertopic517056b3EASTUS2EUAP\",\r\n \"name\": \"egcrudrunnertopic517056b3EASTUS2EUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"417e0452-37c5-48e2-b877-7fff5809d400\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-centraluseuap\",\r\n \"name\": \"eg-latency-runner-topic-centraluseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopiccentraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6a1aac77-493c-4062-af7f-5c15b2c0350d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopiccentraluseuap\",\r\n \"name\": \"eglatencyrunnerqueuetopiccentraluseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.Network/privateEndpoints/pet-a\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5B4B650E-28B9-4790-B3AB-DDBD88D727C4/resourceGroups/VKUKKE-PRIVATELINK/providers/Microsoft.EventGrid/topics/TOPICNAME/privateEndpointConnections/PET-A.505CD90E-5F91-483B-972F-D29C642D02C9\",\r\n \"name\": \"pet-a-a\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://topicname.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b4511d1a-a811-47e8-93c3-f5f7559d4be7\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/vkukke-privatelink/providers/Microsoft.EventGrid/topics/topicName\",\r\n \"name\": \"topicName\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-msi-centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"48d4c61d-e3fe-48f6-8948-98e6bd657975\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a6fe5e02-c402-4799-b9df-fe8b08a22c76\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-msi-centraluseuap\",\r\n \"name\": \"eg-latency-runner-topic-msi-centraluseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-msi-centraluseuap2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d597ccde-e561-4722-8152-62fe6723ef06\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"af17855d-e086-4421-95c1-40880620e926\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-msi-centraluseuap2\",\r\n \"name\": \"eg-latency-runner-topic-msi-centraluseuap2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg1/providers/Microsoft.Network/privateEndpoints/example-PrivateEndpoint\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"this is desc2\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2/providers/Microsoft.EventGrid/topics/examplePrivatelinktopic/privateEndpointConnections/example-PrivateEndpoint.6d90cf76-a022-452c-9994-6dac62a50c99\",\r\n \"name\": \"example-PrivateEndpoint.6d90cf76-a022-452c-9994-6dac62a50c99\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://exampleprivatelinktopic.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1281f69e-f20a-489f-a20e-1eac35233da9\",\r\n \"publicNetworkAccess\": \"Disabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/example-privatelinkRg2/providers/Microsoft.EventGrid/topics/examplePrivatelinktopic\",\r\n \"name\": \"examplePrivatelinktopic\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"privateEndpointConnections\": [\r\n {\r\n \"properties\": {\r\n \"privateEndpoint\": {\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.Network/privateEndpoints/mparkpe2\"\r\n },\r\n \"groupIds\": [\r\n \"topic\"\r\n ],\r\n \"privateLinkServiceConnectionState\": {\r\n \"status\": \"Approved\",\r\n \"description\": \"Auto-approved\",\r\n \"actionsRequired\": \"None\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/mparklink/privateEndpointConnections/mparkpe2.06ef22c1-ae0b-4ab5-be56-eca4301caf7f\",\r\n \"name\": \"mparkpe2.06ef22c1-ae0b-4ab5-be56-eca4301caf7f\",\r\n \"type\": \"Microsoft.EventGrid/topics/privateEndpointConnections\"\r\n }\r\n ],\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://mparklink.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"5ba0e385-f792-4d01-a850-c42ea13ba383\",\r\n \"publicNetworkAccess\": \"Disabled\",\r\n \"inboundIpRules\": []\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/amh/providers/Microsoft.EventGrid/topics/mparklink\",\r\n \"name\": \"mparklink\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-geodr-topic-centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2cb2a945-3a0f-4268-98b5-bae069ee35c4\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-geodr-topic-centraluseuap\",\r\n \"name\": \"eg-latency-geodr-topic-centraluseuap\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-dq-runner-topic-eg-euap-usce-01.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"0e7c12ed-f9c8-4f3d-aefc-053b2fb9f95a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-dq-runner-topic-eg-euap-usce-01\",\r\n \"name\": \"eg-latency-dq-runner-topic-eg-euap-usce-01\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-queue-topic-msi-centraluseuap2.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"fbf6dcf6-c6a5-4e50-894c-152196ebdbf0\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"a3e9d1c7-2fb3-4473-8cbd-51a96b492581\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/eg-latency-runner-queue-topic-msi-centraluseuap2\",\r\n \"name\": \"eg-latency-runner-queue-topic-msi-centraluseuap2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-7667.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"d091ae17-8f61-4e2c-8395-264c98d65167\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": null,\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1829/providers/Microsoft.EventGrid/topics/sdk-Topic-7667\",\r\n \"name\": \"sdk-Topic-7667\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic9c446a35centraluseuap.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b3aef358-18bb-476d-a7bc-961644a43080\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGCentralUSEUAP/providers/Microsoft.EventGrid/topics/egcrudrunnertopic9c446a35CentralUSEUAP\",\r\n \"name\": \"egcrudrunnertopic9c446a35CentralUSEUAP\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"originalTag1\": \"originalValue1\",\r\n \"originalTag2\": \"originalValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-australiacentral2.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"9145283e-6a42-4d10-87ad-c5efb1732324\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-australiacentral2\",\r\n \"name\": \"eg-latency-runner-topic-australiacentral2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicaustraliacentral2.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"c336042b-4043-4de8-830e-9d0b0304037d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicaustraliacentral2\",\r\n \"name\": \"eglatencyrunnerqueuetopicaustraliacentral2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://testauce2kishp.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"417b625d-63f8-4e2b-93fa-58fdc575b79b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/testauce2kishp\",\r\n \"name\": \"testauce2kishp\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://kishptestauc2runner.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1fe806ad-445e-4f01-8144-126e10d66973\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"identity\": {\r\n \"type\": \"None\",\r\n \"principalId\": null,\r\n \"tenantId\": null,\r\n \"userAssignedIdentities\": null\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"australiacentral2\",\r\n \"tags\": {},\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/testdelete/providers/Microsoft.EventGrid/topics/kishptestauc2runner\",\r\n \"name\": \"kishptestauc2runner\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopic7578df23australiacentral2.australiacentral2-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"99394f81-1509-46b1-88ce-97fcf49c1390\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Australia Central 2\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGAustraliaCentral2/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopic7578df23AustraliaCentral2\",\r\n \"name\": \"egcrudrunnerqueuetopic7578df23AustraliaCentral2\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-francesouth.francesouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"b0e87ec1-a850-47da-932f-d2655ab0248a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-francesouth\",\r\n \"name\": \"eg-latency-runner-topic-francesouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicfrancesouth.francesouth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"bea9c4c0-b275-4d3d-bb21-5fe2d7f5b91d\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"France South\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGFranceSouth/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicfrancesouth\",\r\n \"name\": \"eglatencyrunnerqueuetopicfrancesouth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicsafwest.southafricawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"92f40b67-a8c5-42c3-a0bd-97bc85f9126a\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicsafwest\",\r\n \"name\": \"eglatencyrunnerqueuetopicsafwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-safwest.southafricawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"6f68f034-a968-43b8-b940-5670a5b4e12c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-safwest\",\r\n \"name\": \"eg-latency-runner-topic-safwest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopiccd1980e3southafricawest.southafricawest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"af76a842-fd81-402e-bb0c-1979bde2314b\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"South Africa West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGSouthAfricaWest/providers/Microsoft.EventGrid/topics/egcrudrunnertopiccd1980e3SouthAfricaWest\",\r\n \"name\": \"egcrudrunnertopiccd1980e3SouthAfricaWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-uaecentral.uaecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"51ee66d7-aa0a-48d0-83f5-55d06f283287\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-uaecentral\",\r\n \"name\": \"eg-latency-runner-topic-uaecentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic045ec08duaecentral.uaecentral-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"1a51ef26-25d9-421e-95ed-1486d6185d5c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"UAE Central\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgUAEcentral/providers/Microsoft.EventGrid/topics/egcrudrunnertopic045ec08dUAECentral\",\r\n \"name\": \"egcrudrunnertopic045ec08dUAECentral\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnerqueuetopicb23b8550germanynorth.germanynorth-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"45e07b81-6885-48ac-9419-895971a094a6\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Germany North\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRGGermanyNorth/providers/Microsoft.EventGrid/topics/egcrudrunnerqueuetopicb23b8550GermanyNorth\",\r\n \"name\": \"egcrudrunnerqueuetopicb23b8550GermanyNorth\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://egcrudrunnertopic5c30e32cnorwaywest.norwaywest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"dce012db-c23a-43d2-b6fb-7a1ec5f2363c\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Norway West\",\r\n \"tags\": {\r\n \"NewTag1\": \"NewValue1\",\r\n \"NewTag2\": \"NewValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest/providers/Microsoft.EventGrid/topics/egcrudrunnertopic5c30e32cNorwayWest\",\r\n \"name\": \"egcrudrunnertopic5c30e32cNorwayWest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eg-latency-runner-topic-norwaywest.norwaywest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a69f8f1-f28f-4766-b5d1-53073a594459\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Norway West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest/providers/Microsoft.EventGrid/topics/eg-latency-runner-topic-norwaywest\",\r\n \"name\": \"eg-latency-runner-topic-norwaywest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"endpoint\": \"https://eglatencyrunnerqueuetopicnorwaywest.norwaywest-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"EventGridSchema\",\r\n \"metricResourceId\": \"2a36d1d9-1e96-4f33-b2b3-a306c33152f2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"Norway West\",\r\n \"tags\": {\r\n \"Tag1\": \"Value1\",\r\n \"Tag2\": \"Value2\",\r\n \"Tag3\": \"Value3\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/AzureEventGridRunnerRgNorwayWest/providers/Microsoft.EventGrid/topics/eglatencyrunnerqueuetopicnorwaywest\",\r\n \"name\": \"eglatencyrunnerqueuetopicnorwaywest\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/04DF97C0-DA93-4A0A-A0C0-E121F2EA7DFA?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMDRERjk3QzAtREE5My00QTBBLUEwQzAtRTEyMUYyRUE3REZBP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/C05EEA2D-16C9-462E-A4BA-141A8C72B313?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQzA1RUVBMkQtMTZDOS00NjJFLUE0QkEtMTQxQThDNzJCMzEzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:08 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d09b90b-eb88-4af6-827c-a237d948d57a" + "98e1e21a-bfc6-46db-8218-a7ba7ed3608a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11986" ], "x-ms-correlation-request-id": [ - "21ff2af6-6f48-468b-8e00-5b70301ddce2" + "3925fe96-4f28-4fe1-9503-12987286ee99" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014908Z:21ff2af6-6f48-468b-8e00-5b70301ddce2" + "CENTRALUSEUAP:20210219T004604Z:3925fe96-4f28-4fe1-9503-12987286ee99" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:04 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1046,26 +1046,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/04DF97C0-DA93-4A0A-A0C0-E121F2EA7DFA?api-version=2020-06-01\",\r\n \"name\": \"04df97c0-da93-4a0a-a0c0-e121f2ea7dfa\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/C05EEA2D-16C9-462E-A4BA-141A8C72B313?api-version=2020-10-15-preview\",\r\n \"name\": \"c05eea2d-16c9-462e-a4ba-141a8c72b313\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9895c693-a62e-4df9-abdf-79629ae1cc2f" + "a488573e-1a7a-46c1-a6e5-72ad3da080ec" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1078,41 +1078,41 @@ "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:09 GMT" - ], "Pragma": [ "no-cache" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/117589B0-4890-4C4B-903A-CC82D92E7F41?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A22242C2-834F-4DEC-A159-24D824D6E972?api-version=2020-10-15-preview" ], "x-ms-request-id": [ - "ceca2c87-c026-4a07-8f02-64a8302475a4" + "f9aad4c6-609d-4ee0-bd2b-b7a429cbc629" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "e34082d7-46dd-4a21-ae80-da046be2b635" + "da2575a4-d133-4be6-9bab-4fd96c2a4265" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014910Z:e34082d7-46dd-4a21-ae80-da046be2b635" + "CENTRALUSEUAP:20210219T004605Z:da2575a4-d133-4be6-9bab-4fd96c2a4265" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:05 GMT" + ], "Content-Length": [ - "928" + "969" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1121,55 +1121,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": \"https://sdk-topic-476.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"58d84a38-b308-4935-9e03-19da0d7bb128\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476\",\r\n \"name\": \"sdk-Topic-476\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"endpoint\": \"https://sdk-topic-9713.centraluseuap-1.eventgrid.azure.net/api/events\",\r\n \"inputSchema\": \"CustomEventSchema\",\r\n \"inputSchemaMapping\": {\r\n \"properties\": {\r\n \"id\": {\r\n \"sourceField\": \"MyIDFIELD\"\r\n },\r\n \"topic\": {\r\n \"sourceField\": \"myTopicField\"\r\n },\r\n \"eventTime\": {\r\n \"sourceField\": \"MyEventTimeField\"\r\n },\r\n \"eventType\": {\r\n \"sourceField\": \"MyEventTypeField\",\r\n \"defaultValue\": null\r\n },\r\n \"subject\": {\r\n \"sourceField\": \"mySubjectField\",\r\n \"defaultValue\": null\r\n },\r\n \"dataVersion\": {\r\n \"sourceField\": null,\r\n \"defaultValue\": \"2\"\r\n }\r\n },\r\n \"inputSchemaMappingType\": \"Json\"\r\n },\r\n \"metricResourceId\": \"7add0752-487d-4b03-8e4d-046b3f8a0cd2\",\r\n \"publicNetworkAccess\": \"Enabled\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"kind\": \"Azure\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {\r\n \"updatedTag1\": \"updatedValue1\",\r\n \"updatedTag2\": \"updatedValue2\"\r\n },\r\n \"id\": \"/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713\",\r\n \"name\": \"sdk-Topic-9713\",\r\n \"type\": \"Microsoft.EventGrid/topics\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/117589B0-4890-4C4B-903A-CC82D92E7F41?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMTE3NTg5QjAtNDg5MC00QzRCLTkwM0EtQ0M4MkQ5MkU3RjQxP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A22242C2-834F-4DEC-A159-24D824D6E972?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvQTIyMjQyQzItODM0Ri00REVDLUExNTktMjREODI0RDZFOTcyP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:19 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "80561ead-a345-4bb9-a8c0-980edd12a596" + "0953a1d4-500d-44d7-9d27-e6e3fececbd2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11984" ], "x-ms-correlation-request-id": [ - "f3a1ff5a-8609-43d8-bd00-3f47e1e31184" + "f562ad09-34ae-4c30-a3bb-76bd0da13650" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014920Z:f3a1ff5a-8609-43d8-bd00-3f47e1e31184" + "CENTRALUSEUAP:20210219T004615Z:f562ad09-34ae-4c30-a3bb-76bd0da13650" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:15 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1178,55 +1178,55 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/117589B0-4890-4C4B-903A-CC82D92E7F41?api-version=2020-06-01\",\r\n \"name\": \"117589b0-4890-4c4b-903a-cc82d92e7f41\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/A22242C2-834F-4DEC-A159-24D824D6E972?api-version=2020-10-15-preview\",\r\n \"name\": \"a22242c2-834f-4dec-a159-24d824d6e972\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F54BC816-5785-42DC-B4DB-13B33181B5B2?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvRjU0QkM4MTYtNTc4NS00MkRDLUI0REItMTNCMzMxODFCNUIyP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6A320614-F0D6-4B07-B5C4-72C5FF4135F5?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNkEzMjA2MTQtRjBENi00QjA3LUI1QzQtNzJDNUZGNDEzNUY1P2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:31 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3a3e4d0f-9412-493f-adcc-7c88b161aad2" + "bde8912a-a252-406d-ad0c-1733efb4851d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11982" ], "x-ms-correlation-request-id": [ - "011e01bc-eac1-4b87-8956-e013040c820b" + "309450a3-c621-4c84-9439-dfacb093f8bb" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014931Z:011e01bc-eac1-4b87-8956-e013040c820b" + "CENTRALUSEUAP:20210219T004626Z:309450a3-c621-4c84-9439-dfacb093f8bb" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:26 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1235,124 +1235,124 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/F54BC816-5785-42DC-B4DB-13B33181B5B2?api-version=2020-06-01\",\r\n \"name\": \"f54bc816-5785-42dc-b4db-13b33181b5b2\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/6A320614-F0D6-4B07-B5C4-72C5FF4135F5?api-version=2020-10-15-preview\",\r\n \"name\": \"6a320614-f0d6-4b07-b5c4-72c5ff4135f5\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-1440/providers/Microsoft.EventGrid/topics/sdk-Topic-476?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctMTQ0MC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTQ3Nj9hcGktdmVyc2lvbj0yMDIwLTA2LTAx", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/sdk-EventGrid-RG-8113/providers/Microsoft.EventGrid/topics/sdk-Topic-9713?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Jlc291cmNlR3JvdXBzL3Nkay1FdmVudEdyaWQtUkctODExMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50R3JpZC90b3BpY3Mvc2RrLVRvcGljLTk3MTM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7276460b-af05-4bd7-8cf6-d334e4aefe95" + "25a9cbb0-30fe-4dfe-8757-ea97db07a465" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:32 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/60CC2BBB-1204-49A6-9669-12A3B1B0835A?api-version=2020-06-01" + "https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/146B0C3A-07A7-4968-89EB-D3DA06E2F3DB?api-version=2020-10-15-preview" ], "Retry-After": [ "10" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Azure-AsyncOperation": [ - "https://management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/60CC2BBB-1204-49A6-9669-12A3B1B0835A?api-version=2020-06-01" + "https://centraluseuap.management.azure.com:443/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/146B0C3A-07A7-4968-89EB-D3DA06E2F3DB?api-version=2020-10-15-preview" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "937fc5d5-3b64-456d-879b-6115f9b8e685" + "e5bbb924-3dc9-4a80-bf1a-6206405e9e1c" ], "x-ms-correlation-request-id": [ - "937fc5d5-3b64-456d-879b-6115f9b8e685" + "e5bbb924-3dc9-4a80-bf1a-6206405e9e1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014932Z:937fc5d5-3b64-456d-879b-6115f9b8e685" + "CENTRALUSEUAP:20210219T004627Z:e5bbb924-3dc9-4a80-bf1a-6206405e9e1c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:46:27 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/60CC2BBB-1204-49A6-9669-12A3B1B0835A?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvNjBDQzJCQkItMTIwNC00OUE2LTk2NjktMTJBM0IxQjA4MzVBP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/146B0C3A-07A7-4968-89EB-D3DA06E2F3DB?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvbnNTdGF0dXMvMTQ2QjBDM0EtMDdBNy00OTY4LTg5RUItRDNEQTA2RTJGM0RCP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6220231d-329d-4ff0-a62c-dadd98209047" + "69828c53-198b-40a7-b2ff-13a03e15a659" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11980" ], "x-ms-correlation-request-id": [ - "b41fd470-3503-4fd0-9153-ee1e21fbf949" + "291e337f-40cd-478c-84eb-b89b900771b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014942Z:b41fd470-3503-4fd0-9153-ee1e21fbf949" + "CENTRALUSEUAP:20210219T004637Z:291e337f-40cd-478c-84eb-b89b900771b4" ], "X-Content-Type-Options": [ "nosniff" ], + "Date": [ + "Fri, 19 Feb 2021 00:46:36 GMT" + ], "Content-Length": [ - "286" + "308" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1361,58 +1361,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"https://management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/60CC2BBB-1204-49A6-9669-12A3B1B0835A?api-version=2020-06-01\",\r\n \"name\": \"60cc2bbb-1204-49a6-9669-12a3b1b0835a\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"https://centraluseuap.management.azure.com/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationsStatus/146B0C3A-07A7-4968-89EB-D3DA06E2F3DB?api-version=2020-10-15-preview\",\r\n \"name\": \"146b0c3a-07a7-4968-89eb-d3da06e2f3db\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/60CC2BBB-1204-49A6-9669-12A3B1B0835A?api-version=2020-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvNjBDQzJCQkItMTIwNC00OUE2LTk2NjktMTJBM0IxQjA4MzVBP2FwaS12ZXJzaW9uPTIwMjAtMDYtMDE=", + "RequestUri": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/providers/Microsoft.EventGrid/locations/centraluseuap/operationResults/146B0C3A-07A7-4968-89EB-D3DA06E2F3DB?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNWI0YjY1MGUtMjhiOS00NzkwLWIzYWItZGRiZDg4ZDcyN2M0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL2xvY2F0aW9ucy9jZW50cmFsdXNldWFwL29wZXJhdGlvblJlc3VsdHMvMTQ2QjBDM0EtMDdBNy00OTY4LTg5RUItRDNEQTA2RTJGM0RCP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/5.3.2.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Sat, 06 Jun 2020 01:49:42 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "7b4d6cf8-4857-41ab-9d41-ea5b629ac45d" + "1d83dffb-a438-4e3f-800c-d21f850a287d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11979" ], "x-ms-correlation-request-id": [ - "2396970d-85e4-4bb9-9809-1dc5e7bfdede" + "55639136-8870-4e9c-89fb-1bb3f4a79d4c" ], "x-ms-routing-request-id": [ - "WESTUS:20200606T014942Z:2396970d-85e4-4bb9-9809-1dc5e7bfdede" + "CENTRALUSEUAP:20210219T004637Z:55639136-8870-4e9c-89fb-1bb3f4a79d4c" ], "X-Content-Type-Options": [ "nosniff" ], - "Content-Length": [ - "0" + "Date": [ + "Fri, 19 Feb 2021 00:46:36 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, "ResponseBody": "", @@ -1421,8 +1421,8 @@ ], "Names": { "TopicCreateGetUpdateDelete": [ - "sdk-EventGrid-RG-1440", - "sdk-Topic-476" + "sdk-EventGrid-RG-8113", + "sdk-Topic-9713" ] }, "Variables": { diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/TopicTypeTestsAsync.json b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/TopicTypeTestsAsync.json new file mode 100644 index 000000000000..0dd62cf0f2da --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/SessionRecords/ScenarioTests/TopicTypeTestsAsync.json @@ -0,0 +1,197 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.EventGrid/topicTypes?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c0322e5-fc21-441c-a7b5-b81a2aea1d3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e9110dea-cffa-439d-b246-8c7f99cccc45" + ], + "x-ms-correlation-request-id": [ + "e9110dea-cffa-439d-b246-8c7f99cccc45" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210219T005433Z:e9110dea-cffa-439d-b246-8c7f99cccc45" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 00:54:33 GMT" + ], + "Content-Length": [ + "18065" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Eventhub\",\r\n \"displayName\": \"Event Hubs Namespaces\",\r\n \"description\": \"Microsoft Event Hubs service events.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.EventHub/namespaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Eventhub.Namespaces\",\r\n \"name\": \"Microsoft.Eventhub.Namespaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Storage\",\r\n \"displayName\": \"Storage Accounts (Blob & GPv2)\",\r\n \"description\": \"Microsoft Storage service events.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Storage/storageAccounts/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts\",\r\n \"name\": \"Microsoft.Storage.StorageAccounts\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Resources\",\r\n \"displayName\": \"Azure Subscriptions\",\r\n \"description\": \"Resource management events under an Azure subscription\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Resources.Subscriptions\",\r\n \"name\": \"Microsoft.Resources.Subscriptions\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Resources\",\r\n \"displayName\": \"Resource Groups\",\r\n \"description\": \"Resource management events under a resource group.\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Resources.ResourceGroups\",\r\n \"name\": \"Microsoft.Resources.ResourceGroups\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Devices\",\r\n \"displayName\": \"Azure IoT Hub Accounts\",\r\n \"description\": \"Azure IoT Hub service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Devices/ioTHubs/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Devices.IoTHubs\",\r\n \"name\": \"Microsoft.Devices.IoTHubs\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.EventGrid\",\r\n \"displayName\": \"Event Grid Topics\",\r\n \"description\": \"Custom events via Event Grid Topics\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\"\r\n ]\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.EventGrid.Topics\",\r\n \"name\": \"Microsoft.EventGrid.Topics\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.ServiceBus\",\r\n \"displayName\": \"Service Bus Namespaces\",\r\n \"description\": \"Service Bus events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.ServiceBus/namespaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.ServiceBus.Namespaces\",\r\n \"name\": \"Microsoft.ServiceBus.Namespaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.ContainerRegistry\",\r\n \"displayName\": \"Azure Container Registry\",\r\n \"description\": \"Azure Container Registry service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Central US EUAP\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"South India\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.ContainerRegistry/registries/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.ContainerRegistry.Registries\",\r\n \"name\": \"Microsoft.ContainerRegistry.Registries\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Media\",\r\n \"displayName\": \"Microsoft Azure Media Services\",\r\n \"description\": \"Microsoft Azure Media Services events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Media/MediaServices/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Media.MediaServices\",\r\n \"name\": \"Microsoft.Media.MediaServices\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Maps\",\r\n \"displayName\": \"Azure Maps Accounts\",\r\n \"description\": \"Microsoft Maps service events.\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Maps/Accounts/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Maps.Accounts\",\r\n \"name\": \"Microsoft.Maps.Accounts\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.EventGrid\",\r\n \"displayName\": \"Event Grid Domains\",\r\n \"description\": \"Custom events via Event Grid Domains.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\"\r\n ]\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.EventGrid.Domains\",\r\n \"name\": \"Microsoft.EventGrid.Domains\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.AppConfiguration\",\r\n \"displayName\": \"Microsoft Azure App Configuration\",\r\n \"description\": \"Microsoft Azure App Configuration events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"East US 2 EUAP\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"South East Asia\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"Central India\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.AppConfiguration/ConfigurationStores/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.AppConfiguration.ConfigurationStores\",\r\n \"name\": \"Microsoft.AppConfiguration.ConfigurationStores\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.KeyVault\",\r\n \"displayName\": \"Microsoft Key Vault\",\r\n \"description\": \"Microsoft Key Vault service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.KeyVault/vaults/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.KeyVault.vaults\",\r\n \"name\": \"Microsoft.KeyVault.vaults\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Web\",\r\n \"displayName\": \"App Services\",\r\n \"description\": \"App Services events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Web/sites/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Web.Sites\",\r\n \"name\": \"Microsoft.Web.Sites\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Web\",\r\n \"displayName\": \"App Service Plans\",\r\n \"description\": \"App Service Plans events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Web/ServerFarms/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Web.ServerFarms\",\r\n \"name\": \"Microsoft.Web.ServerFarms\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.SignalRService\",\r\n \"displayName\": \"Azure SignalR Service\",\r\n \"description\": \"Azure SignalR service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"Australia East\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central US EUAP\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Central India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Germany West Central\",\r\n \"North Central US\",\r\n \"Norway East\",\r\n \"East Asia\",\r\n \"Canada Central\",\r\n \"West India\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.SignalRService/SignalR/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.SignalRService.SignalR\",\r\n \"name\": \"Microsoft.SignalRService.SignalR\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.MachineLearningServices\",\r\n \"displayName\": \"Machine Learning Workspaces\",\r\n \"description\": \"Microsoft Azure Machine Learning Service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"East US 2 EUAP\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"France Central\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Australia East\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.MachineLearningServices/Workspaces/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.MachineLearningServices.Workspaces\",\r\n \"name\": \"Microsoft.MachineLearningServices.Workspaces\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Cache\",\r\n \"displayName\": \"Microsoft Azure Cache for Redis\",\r\n \"description\": \"Microsoft Azure Cache for Redis service events\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Cache/Redis/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Cache.Redis\",\r\n \"name\": \"Microsoft.Cache.Redis\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Communication\",\r\n \"displayName\": \"Azure Communication Services\",\r\n \"description\": \"Azure Communication Service Events\",\r\n \"resourceRegionType\": \"GlobalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Communication/communicationservices/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Communication.CommunicationServices\",\r\n \"name\": \"Microsoft.Communication.CommunicationServices\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LlN0b3JhZ2UuU3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMTUtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b2d8b1e-caf1-4ba8-bc93-2060db6c2f55" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c8b55493-6f18-44b7-b81c-c191aee6a4d7" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "2ade325d-8708-411a-bb80-55656130c369" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210219T005433Z:2ade325d-8708-411a-bb80-55656130c369" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 00:54:33 GMT" + ], + "Content-Length": [ + "1239" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provider\": \"Microsoft.Storage\",\r\n \"displayName\": \"Storage Accounts (Blob & GPv2)\",\r\n \"description\": \"Microsoft Storage service events.\",\r\n \"resourceRegionType\": \"RegionalResource\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"supportedLocations\": [\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US EUAP\",\r\n \"West India\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"France South\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"UAE North\",\r\n \"UAE Central\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\"\r\n ],\r\n \"sourceResourceFormat\": \"/subscriptions//resourceGroups//providers/Microsoft.Storage/storageAccounts/\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts\",\r\n \"name\": \"Microsoft.Storage.StorageAccounts\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts/eventTypes?api-version=2020-10-15-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRHcmlkL3RvcGljVHlwZXMvTWljcm9zb2Z0LlN0b3JhZ2UuU3RvcmFnZUFjY291bnRzL2V2ZW50VHlwZXM/YXBpLXZlcnNpb249MjAyMC0xMC0xNS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc85d1d2-912c-4a30-978e-10006babe07d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.EventGrid.EventGridManagementClient/6.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fbae4a02-5dd6-4b0c-a196-4e06bc92b85a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b85cad0e-efab-4435-a4a1-29a4883b26ba" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210219T005433Z:b85cad0e-efab-4435-a4a1-29a4883b26ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 00:54:33 GMT" + ], + "Content-Length": [ + "2387" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"displayName\": \"Blob Created\",\r\n \"description\": \"Raised when a blob is created.\",\r\n \"schemaUrl\": \"https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/eventgrid/data-plane/Microsoft.Storage/stable/2018-01-01/Storage.json\",\r\n \"isInDefaultSet\": true\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts/eventTypes/Microsoft.Storage.BlobCreated\",\r\n \"name\": \"Microsoft.Storage.BlobCreated\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes/eventTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"displayName\": \"Blob Deleted\",\r\n \"description\": \"Raised when a blob is deleted.\",\r\n \"schemaUrl\": \"https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/specification/eventgrid/data-plane/Microsoft.Storage/stable/2018-01-01/Storage.json\",\r\n \"isInDefaultSet\": true\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts/eventTypes/Microsoft.Storage.BlobDeleted\",\r\n \"name\": \"Microsoft.Storage.BlobDeleted\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes/eventTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"displayName\": \"Directory Created\",\r\n \"description\": \"Event published when a directory is created\",\r\n \"schemaUrl\": \"tbd\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts/eventTypes/Microsoft.Storage.DirectoryCreated\",\r\n \"name\": \"Microsoft.Storage.DirectoryCreated\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes/eventTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"displayName\": \"Directory Deleted\",\r\n \"description\": \"Event published when a directory is deleted\",\r\n \"schemaUrl\": \"tbd\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts/eventTypes/Microsoft.Storage.DirectoryDeleted\",\r\n \"name\": \"Microsoft.Storage.DirectoryDeleted\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes/eventTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"displayName\": \"Blob Renamed\",\r\n \"description\": \"Event published when a blob is renamed\",\r\n \"schemaUrl\": \"tbd\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts/eventTypes/Microsoft.Storage.BlobRenamed\",\r\n \"name\": \"Microsoft.Storage.BlobRenamed\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes/eventTypes\"\r\n },\r\n {\r\n \"properties\": {\r\n \"displayName\": \"Directory Renamed\",\r\n \"description\": \"Event published when a directory is renamed\",\r\n \"schemaUrl\": \"tbd\"\r\n },\r\n \"id\": \"providers/Microsoft.EventGrid/topicTypes/Microsoft.Storage.StorageAccounts/eventTypes/Microsoft.Storage.DirectoryRenamed\",\r\n \"name\": \"Microsoft.Storage.DirectoryRenamed\",\r\n \"type\": \"Microsoft.EventGrid/topicTypes/eventTypes\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "5b4b650e-28b9-4790-b3ab-ddbd88d727c4" + } +} \ No newline at end of file diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.EventSubscriptionTests.CRUD.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.EventSubscriptionTests.CRUD.cs index 2fce390532e4..2fae6ddbdc8c 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.EventSubscriptionTests.CRUD.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.EventSubscriptionTests.CRUD.cs @@ -114,6 +114,20 @@ public void EventSubscriptionToCustomTopicCreateGetUpdateDelete() Destination = new WebHookEventSubscriptionDestination() { EndpointUrl = AzureFunctionEndpointUrl, + DeliveryAttributeMappings = new List + { + new StaticDeliveryAttributeMapping() + { + Name = "StaticDeliveryAttribute1", + IsSecret = false, + Value = "someValue" + }, + new DynamicDeliveryAttributeMapping() + { + Name = "DynamicDeliveryAttribute1", + SourceField = "SomeField" + } + } }, Filter = new EventSubscriptionFilter() { @@ -135,6 +149,10 @@ public void EventSubscriptionToCustomTopicCreateGetUpdateDelete() eventSubscriptionResponse = this.eventGridManagementClient.EventSubscriptions.UpdateAsync(scope, eventSubscriptionName, eventSubscriptionUpdateParameters).Result; Assert.Equal(".jpg", eventSubscriptionResponse.Filter.SubjectEndsWith, StringComparer.CurrentCultureIgnoreCase); Assert.Contains(eventSubscriptionResponse.Labels, label => label == "UpdatedLabel1"); + Assert.NotNull(((WebHookEventSubscriptionDestination)eventSubscriptionResponse.Destination).DeliveryAttributeMappings); + Assert.Equal(2, ((WebHookEventSubscriptionDestination)eventSubscriptionResponse.Destination).DeliveryAttributeMappings.Count); + Assert.Equal("StaticDeliveryAttribute1", ((WebHookEventSubscriptionDestination)eventSubscriptionUpdateParameters.Destination).DeliveryAttributeMappings[0].Name); + Assert.Equal("DynamicDeliveryAttribute1", ((WebHookEventSubscriptionDestination)eventSubscriptionUpdateParameters.Destination).DeliveryAttributeMappings[1].Name); // List event subscriptions var eventSubscriptionsPage = this.EventGridManagementClient.EventSubscriptions.ListRegionalByResourceGroupAsync(resourceGroup, location).Result; diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.TopicTests.CRUD.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.TopicTests.CRUD.cs index b92ad6d5acd6..a36d0d6c3143 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.TopicTests.CRUD.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.TopicTests.CRUD.cs @@ -47,6 +47,8 @@ public void TopicCreateGetUpdateDelete() Location = location, Tags = originalTagsDictionary, InputSchema = InputSchema.CustomEventSchema, + Kind = ResourceKind.Azure, + ExtendedLocation = null, InputSchemaMapping = new JsonInputSchemaMapping() { Subject = new JsonFieldWithDefault("mySubjectField"), @@ -77,6 +79,9 @@ public void TopicCreateGetUpdateDelete() Assert.Equal("Succeeded", getTopicResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); Assert.Equal(location, getTopicResponse.Location, StringComparer.CurrentCultureIgnoreCase); Assert.Contains(getTopicResponse.Tags, tag => tag.Key == "originalTag1"); + Assert.NotNull(getTopicResponse.Kind); + Assert.Equal(ResourceKind.Azure, getTopicResponse.Kind); + Assert.Null(getTopicResponse.ExtendedLocation); //// Disable the test as Sku is not part of GA API yet. //// Assert.Equal("Basic", getTopicResponse.Sku.Name, StringComparer.CurrentCultureIgnoreCase); diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.TopicTypeTests.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.TopicTypeTests.cs index 49a75fb647c8..3706e06c88ba 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.TopicTypeTests.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.TopicTypeTests.cs @@ -8,17 +8,18 @@ using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using EventGrid.Tests.TestHelper; using Xunit; +using System.Threading.Tasks; namespace EventGrid.Tests.ScenarioTests { public partial class ScenarioTests { - [Fact(Skip = "This is not yet enabled for the new API version, will re-record once it is enabled")] - public void TopicTypeTests() - { - const string StorageTopicType = "Microsoft.Storage.StorageAccounts"; - const string EventHubsTopicType = "Microsoft.EventHub.Namespaces"; + const string StorageTopicType = "Microsoft.Storage.StorageAccounts"; + const string EventHubsTopicType = "Microsoft.EventHub.Namespaces"; + [Fact] + public async Task TopicTypeTestsAsync() + { using (MockContext context = MockContext.Start(this.GetType())) { InitializeClients(context); @@ -26,19 +27,22 @@ public void TopicTypeTests() var location = this.ResourceManagementClient.GetLocationFromProvider(); IEnumerable topicTypesList = this.EventGridManagementClient.TopicTypes.ListAsync().Result; - Assert.NotNull(topicTypesList); - Assert.Contains(topicTypesList, tt => string.Equals(tt.Name, StorageTopicType, StringComparison.OrdinalIgnoreCase)); Assert.Contains(topicTypesList, tt => string.Equals(tt.Name, EventHubsTopicType, StringComparison.OrdinalIgnoreCase)); - TopicTypeInfo storageTopicType = this.EventGridManagementClient.TopicTypes.GetAsync(StorageTopicType).Result; - Assert.Equal(storageTopicType.Name, StorageTopicType); - - IEnumerable eventTypesList = this.EventGridManagementClient.TopicTypes.ListEventTypesAsync(StorageTopicType).Result; - Assert.NotNull(eventTypesList); - Assert.Contains(eventTypesList, et => string.Equals(et.Name, "Microsoft.Storage.BlobCreated", StringComparison.OrdinalIgnoreCase)); + await ValidateStorageEventTypesAsync(); } } + + async Task ValidateStorageEventTypesAsync() + { + TopicTypeInfo storageTopicType = this.EventGridManagementClient.TopicTypes.GetAsync(StorageTopicType).Result; + Assert.Equal(storageTopicType.Name, StorageTopicType); + + IEnumerable eventTypesList = await this.EventGridManagementClient.TopicTypes.ListEventTypesAsync(StorageTopicType); + Assert.NotNull(eventTypesList); + Assert.Contains(eventTypesList, et => string.Equals(et.Name, "Microsoft.Storage.BlobCreated", StringComparison.OrdinalIgnoreCase)); + } } } \ No newline at end of file diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.cs index 189170c15137..9e68770e75d3 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/tests/Tests/ScenarioTests.cs @@ -27,7 +27,9 @@ protected void InitializeClients(MockContext context) if (!m_initialized) { resourceManagementClient = EventGridManagementHelper.GetResourceManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + resourceManagementClient.BaseUri = new System.Uri("https://eastus2euap.management.azure.com"); eventGridManagementClient = EventGridManagementHelper.GetEventGridManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + eventGridManagementClient.BaseUri = new System.Uri("https://eastus2euap.management.azure.com"); } } } diff --git a/tools/Repo-Tasks.psd1 b/tools/Repo-Tasks.psd1 index 4216f44a2935..88a0d05817ef 100644 --- a/tools/Repo-Tasks.psd1 +++ b/tools/Repo-Tasks.psd1 @@ -1,127 +1,127 @@ -# -# Module manifest for module 'PSGet_Repo-Tasks' -# -# Generated by: shahabhijeet -# -# Generated on: 3/11/2017 -# - -@{ - -# Script module or binary module file associated with this manifest. -RootModule = '.\Repo-Tasks.psm1' - -# Version number of this module. -ModuleVersion = '1.0' - -# Supported PSEditions -# CompatiblePSEditions = @() - -# ID used to uniquely identify this module -GUID = '47d290ee-ab2a-489d-a963-a6168175a6f2' - -# Author of this module -Author = 'shahabhijeet' - -# Company or vendor of this module -CompanyName = 'Microsoft' - -# Copyright statement for this module -Copyright = '(c) 2016 shahabhijeet. All rights reserved.' - -# Description of the functionality provided by this module -# Description = '' - -# Minimum version of the Windows PowerShell engine required by this module -PowerShellVersion = '5.1' - -# Name of the Windows PowerShell host required by this module -# PowerShellHostName = '' - -# Minimum version of the Windows PowerShell host required by this module -# PowerShellHostVersion = '' - -# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# DotNetFrameworkVersion = '' - -# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. -# CLRVersion = '' - -# Processor architecture (None, X86, Amd64) required by this module -# ProcessorArchitecture = '' - -# Modules that must be imported into the global environment prior to importing this module -# RequiredModules = @() - -# Assemblies that must be loaded prior to importing this module -# RequiredAssemblies = @() - -# Script files (.ps1) that are run in the caller's environment prior to importing this module. -# ScriptsToProcess = @() - -# Type files (.ps1xml) to be loaded when importing this module -# TypesToProcess = @() - -# Format files (.ps1xml) to be loaded when importing this module -# FormatsToProcess = @() - -# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess -# NestedModules = @() - -# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. -FunctionsToExport = 'Set-TestEnvironment', 'Get-BuildScopes', 'Start-Build', - 'Invoke-CheckinTests', 'Install-VSProjectTemplates' - -# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. -CmdletsToExport = @() - -# Variables to export from this module -# VariablesToExport = @() - -# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. -AliasesToExport = @() - -# DSC resources to export from this module -# DscResourcesToExport = @() - -# List of all modules packaged with this module -# ModuleList = @() - -# List of all files packaged with this module -# FileList = @() - -# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. -PrivateData = @{ - - PSData = @{ - - # Tags applied to this module. These help with module discovery in online galleries. - # Tags = @() - - # A URL to the license for this module. - LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt' - - # A URL to the main website for this project. - ProjectUri = 'https://github.com/Azure/azure-powershell' - - # A URL to an icon representing this module. - # IconUri = '' - - # ReleaseNotes of this module - # ReleaseNotes = '' - - # External dependent modules of this module - # ExternalModuleDependencies = '' - - } # End of PSData hashtable - - } # End of PrivateData hashtable - -# HelpInfo URI of this module -# HelpInfoURI = '' - -# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. -# DefaultCommandPrefix = '' - -} - +# +# Module manifest for module 'PSGet_Repo-Tasks' +# +# Generated by: shahabhijeet +# +# Generated on: 3/11/2017 +# + +@{ + +# Script module or binary module file associated with this manifest. +RootModule = '.\Repo-Tasks.psm1' + +# Version number of this module. +ModuleVersion = '1.0' + +# Supported PSEditions +# CompatiblePSEditions = @() + +# ID used to uniquely identify this module +GUID = '47d290ee-ab2a-489d-a963-a6168175a6f2' + +# Author of this module +Author = 'shahabhijeet' + +# Company or vendor of this module +CompanyName = 'Microsoft' + +# Copyright statement for this module +Copyright = '(c) 2016 shahabhijeet. All rights reserved.' + +# Description of the functionality provided by this module +# Description = '' + +# Minimum version of the Windows PowerShell engine required by this module +PowerShellVersion = '5.1' + +# Name of the Windows PowerShell host required by this module +# PowerShellHostName = '' + +# Minimum version of the Windows PowerShell host required by this module +# PowerShellHostVersion = '' + +# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +# DotNetFrameworkVersion = '' + +# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only. +# CLRVersion = '' + +# Processor architecture (None, X86, Amd64) required by this module +# ProcessorArchitecture = '' + +# Modules that must be imported into the global environment prior to importing this module +# RequiredModules = @() + +# Assemblies that must be loaded prior to importing this module +# RequiredAssemblies = @() + +# Script files (.ps1) that are run in the caller's environment prior to importing this module. +# ScriptsToProcess = @() + +# Type files (.ps1xml) to be loaded when importing this module +# TypesToProcess = @() + +# Format files (.ps1xml) to be loaded when importing this module +# FormatsToProcess = @() + +# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess +# NestedModules = @() + +# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export. +FunctionsToExport = 'Set-TestEnvironment', 'Get-BuildScopes', 'Start-Build', + 'Invoke-CheckinTests', 'Install-VSProjectTemplates' + +# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. +CmdletsToExport = @() + +# Variables to export from this module +# VariablesToExport = @() + +# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export. +AliasesToExport = @() + +# DSC resources to export from this module +# DscResourcesToExport = @() + +# List of all modules packaged with this module +# ModuleList = @() + +# List of all files packaged with this module +# FileList = @() + +# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell. +PrivateData = @{ + + PSData = @{ + + # Tags applied to this module. These help with module discovery in online galleries. + # Tags = @() + + # A URL to the license for this module. + LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt' + + # A URL to the main website for this project. + ProjectUri = 'https://github.com/Azure/azure-powershell' + + # A URL to an icon representing this module. + # IconUri = '' + + # ReleaseNotes of this module + # ReleaseNotes = '' + + # External dependent modules of this module + # ExternalModuleDependencies = '' + + } # End of PSData hashtable + + } # End of PrivateData hashtable + +# HelpInfo URI of this module +# HelpInfoURI = '' + +# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix. +# DefaultCommandPrefix = '' + +} + diff --git a/tools/generateMetadata.ps1 b/tools/generateMetadata.ps1 index 9319e7331765..6081ed3eca9e 100644 --- a/tools/generateMetadata.ps1 +++ b/tools/generateMetadata.ps1 @@ -1,34 +1,34 @@ -Write-Host $([DateTime]::UtcNow.ToString('u').Replace('Z',' UTC')) - -Write-Host "" -Write-Host "1) azure-rest-api-specs repository information" -Write-Host "GitHub user:" $Args[0] -Write-Host "Branch: " $Args[1] -Try -{ - [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 - Write-Host "Commit: " (Invoke-RestMethod "https://api.github.com/repos/$($Args[0])/azure-rest-api-specs/branches/$($Args[1])").commit.sha -} -Catch -{ - # if the above REST call fails, a commit ID was passed, so we already got the information we need -} - -Write-Host "" -Write-Host "2) AutoRest information" -Write-Host "Requested version:" $Args[2] -Try -{ - Write-Host "Bootstrapper version: " (npm list -g autorest) -} -Catch{} -Try -{ - Write-Host "Latest installed version: " (autorest --list-installed | Where {$_ -like "*Latest Core Installed*"}).Split()[-1] -} -Catch{} -Try -{ - Write-Host "Latest installed version: " (autorest --list-installed | Where {$_ -like "*@microsoft.azure/autorest-core*"} | Select -Last 1).Split('|')[3] -} +Write-Host $([DateTime]::UtcNow.ToString('u').Replace('Z',' UTC')) + +Write-Host "" +Write-Host "1) azure-rest-api-specs repository information" +Write-Host "GitHub user:" $Args[0] +Write-Host "Branch: " $Args[1] +Try +{ + [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 + Write-Host "Commit: " (Invoke-RestMethod "https://api.github.com/repos/$($Args[0])/azure-rest-api-specs/branches/$($Args[1])").commit.sha +} +Catch +{ + # if the above REST call fails, a commit ID was passed, so we already got the information we need +} + +Write-Host "" +Write-Host "2) AutoRest information" +Write-Host "Requested version:" $Args[2] +Try +{ + Write-Host "Bootstrapper version: " (npm list -g autorest) +} +Catch{} +Try +{ + Write-Host "Latest installed version: " (autorest --list-installed | Where {$_ -like "*Latest Core Installed*"}).Split()[-1] +} +Catch{} +Try +{ + Write-Host "Latest installed version: " (autorest --list-installed | Where {$_ -like "*@microsoft.azure/autorest-core*"} | Select -Last 1).Split('|')[3] +} Catch{} \ No newline at end of file