diff --git a/eng/mgmt/mgmtmetadata/eventhub_resource-manager.txt b/eng/mgmt/mgmtmetadata/eventhub_resource-manager.txt new file mode 100644 index 000000000000..f13a2de5b0d9 --- /dev/null +++ b/eng/mgmt/mgmtmetadata/eventhub_resource-manager.txt @@ -0,0 +1,14 @@ +Installing AutoRest version: v2 +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/eventhub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\AutoRestSDK\EH\azure-sdk-for-net\sdk +2020-05-11 09:31:53 UTC +Azure-rest-api-specs repository information +GitHub fork: Azure +Branch: master +Commit: f93a02743ad250d914677b70712f15b2c953f1f5 +AutoRest information +Requested version: v2 +Bootstrapper version: autorest@1.9.1 diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/AzSdk.RP.props b/sdk/eventhub/Microsoft.Azure.Management.EventHub/AzSdk.RP.props index eaf3db7e2863..2b835e91516c 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/AzSdk.RP.props +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/AzSdk.RP.props @@ -1,7 +1,7 @@ - EventHub_2017-04-01; + EventHub_2018-01-01-preview;EventHub_2017-04-01; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ClustersOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ClustersOperations.cs new file mode 100644 index 000000000000..709fcd1c5e87 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ClustersOperations.cs @@ -0,0 +1,1740 @@ +// +// 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.EventHub +{ + 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; + + /// + /// ClustersOperations operations. + /// + internal partial class ClustersOperations : IServiceOperations, IClustersOperations + { + /// + /// Initializes a new instance of the ClustersOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ClustersOperations(EventHubManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventHubManagementClient + /// + public EventHubManagementClient Client { get; private set; } + + /// + /// List the quantity of available pre-provisioned Event Hubs Clusters, indexed + /// by Azure region. + /// + /// + /// 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> ListAvailableClustersWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListAvailableClusters", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.EventHub/availableClusterRegions").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists the available Event Hubs Clusters within an ARM resource group + /// + /// + /// Name of the resource group within the azure 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, 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 (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("apiVersion", apiVersion); + 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.EventHub/clusters").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Gets the resource description of the specified Event Hubs Cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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 clusterName, 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 (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (clusterName != null) + { + if (clusterName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "clusterName", 50); + } + if (clusterName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "clusterName", 6); + } + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("apiVersion", apiVersion); + 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.EventHub/clusters/{clusterName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Creates or updates an instance of an Event Hubs Cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> PutWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginPutWithHttpMessagesAsync(resourceGroupName, clusterName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Modifies mutable properties on the Event Hubs Cluster. This operation is + /// idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The properties of the Event Hubs Cluster which should be updated. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> PatchWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginPatchWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes an existing Event Hubs Cluster. This operation is idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// List all Event Hubs Namespace IDs in an Event Hubs Dedicated Cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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> ListNamespacesWithHttpMessagesAsync(string resourceGroupName, string clusterName, 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 (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (clusterName != null) + { + if (clusterName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "clusterName", 50); + } + if (clusterName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "clusterName", 6); + } + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListNamespaces", 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.EventHub/clusters/{clusterName}/namespaces").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Creates or updates an instance of an Event Hubs Cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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> BeginPutWithHttpMessagesAsync(string resourceGroupName, string clusterName, 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 (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (clusterName != null) + { + if (clusterName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "clusterName", 50); + } + if (clusterName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "clusterName", 6); + } + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginPut", 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.EventHub/clusters/{clusterName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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; + // 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 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Modifies mutable properties on the Event Hubs Cluster. This operation is + /// idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The properties of the Event Hubs Cluster which should be updated. + /// + /// + /// 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> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster parameters, 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 (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (clusterName != null) + { + if (clusterName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "clusterName", 50); + } + if (clusterName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "clusterName", 6); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginPatch", 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.EventHub/clusters/{clusterName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Deletes an existing Event Hubs Cluster. This operation is idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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 clusterName, 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 (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (clusterName != null) + { + if (clusterName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "clusterName", 50); + } + if (clusterName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "clusterName", 6); + } + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("apiVersion", apiVersion); + 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.EventHub/clusters/{clusterName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists the available Event Hubs Clusters within an ARM 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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ClustersOperationsExtensions.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ClustersOperationsExtensions.cs new file mode 100644 index 000000000000..ddc108f49629 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ClustersOperationsExtensions.cs @@ -0,0 +1,453 @@ +// +// 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.EventHub +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for ClustersOperations. + /// + public static partial class ClustersOperationsExtensions + { + /// + /// List the quantity of available pre-provisioned Event Hubs Clusters, indexed + /// by Azure region. + /// + /// + /// The operations group for this extension method. + /// + public static AvailableClustersList ListAvailableClusters(this IClustersOperations operations) + { + return operations.ListAvailableClustersAsync().GetAwaiter().GetResult(); + } + + /// + /// List the quantity of available pre-provisioned Event Hubs Clusters, indexed + /// by Azure region. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task ListAvailableClustersAsync(this IClustersOperations operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListAvailableClustersWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists the available Event Hubs Clusters within an ARM resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + public static IPage ListByResourceGroup(this IClustersOperations operations, string resourceGroupName) + { + return operations.ListByResourceGroupAsync(resourceGroupName).GetAwaiter().GetResult(); + } + + /// + /// Lists the available Event Hubs Clusters within an ARM resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The cancellation token. + /// + public static async Task> ListByResourceGroupAsync(this IClustersOperations operations, string resourceGroupName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByResourceGroupWithHttpMessagesAsync(resourceGroupName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the resource description of the specified Event Hubs Cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + public static Cluster Get(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + return operations.GetAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Gets the resource description of the specified Event Hubs Cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates an instance of an Event Hubs Cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + public static Cluster Put(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + return operations.PutAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an instance of an Event Hubs Cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The cancellation token. + /// + public static async Task PutAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PutWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Modifies mutable properties on the Event Hubs Cluster. This operation is + /// idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The properties of the Event Hubs Cluster which should be updated. + /// + public static Cluster Patch(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster parameters) + { + return operations.PatchAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Modifies mutable properties on the Event Hubs Cluster. This operation is + /// idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The properties of the Event Hubs Cluster which should be updated. + /// + /// + /// The cancellation token. + /// + public static async Task PatchAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PatchWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes an existing Event Hubs Cluster. This operation is idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + public static void Delete(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + operations.DeleteAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Deletes an existing Event Hubs Cluster. This operation is idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// List all Event Hubs Namespace IDs in an Event Hubs Dedicated Cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + public static EHNamespaceIdListResult ListNamespaces(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + return operations.ListNamespacesAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// List all Event Hubs Namespace IDs in an Event Hubs Dedicated Cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The cancellation token. + /// + public static async Task ListNamespacesAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListNamespacesWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates an instance of an Event Hubs Cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + public static Cluster BeginPut(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + return operations.BeginPutAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an instance of an Event Hubs Cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The cancellation token. + /// + public static async Task BeginPutAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginPutWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Modifies mutable properties on the Event Hubs Cluster. This operation is + /// idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The properties of the Event Hubs Cluster which should be updated. + /// + public static Cluster BeginPatch(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster parameters) + { + return operations.BeginPatchAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Modifies mutable properties on the Event Hubs Cluster. This operation is + /// idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The properties of the Event Hubs Cluster which should be updated. + /// + /// + /// The cancellation token. + /// + public static async Task BeginPatchAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, Cluster parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginPatchWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes an existing Event Hubs Cluster. This operation is idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + public static void BeginDelete(this IClustersOperations operations, string resourceGroupName, string clusterName) + { + operations.BeginDeleteAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Deletes an existing Event Hubs Cluster. This operation is idempotent. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IClustersOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Lists the available Event Hubs Clusters within an ARM resource group + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListByResourceGroupNext(this IClustersOperations operations, string nextPageLink) + { + return operations.ListByResourceGroupNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Lists the available Event Hubs Clusters within an ARM 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 IClustersOperations 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/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConfigurationOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConfigurationOperations.cs new file mode 100644 index 000000000000..b8df6fec760a --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConfigurationOperations.cs @@ -0,0 +1,511 @@ +// +// 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.EventHub +{ + 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; + + /// + /// ConfigurationOperations operations. + /// + internal partial class ConfigurationOperations : IServiceOperations, IConfigurationOperations + { + /// + /// Initializes a new instance of the ConfigurationOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal ConfigurationOperations(EventHubManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the EventHubManagementClient + /// + public EventHubManagementClient Client { get; private set; } + + /// + /// Replace all specified Event Hubs Cluster settings with those contained in + /// the request body. Leaves the settings not specified in the request body + /// unmodified. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// Parameters for creating an Event Hubs Cluster 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> PatchWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterQuotaConfigurationProperties parameters, 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 (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (clusterName != null) + { + if (clusterName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "clusterName", 50); + } + if (clusterName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "clusterName", 6); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Patch", 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.EventHub/clusters/{clusterName}/quotaConfiguration/default").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Get all Event Hubs Cluster settings - a collection of key/value pairs which + /// represent the quotas and settings imposed on the cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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 clusterName, 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 (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (clusterName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "clusterName"); + } + if (clusterName != null) + { + if (clusterName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "clusterName", 50); + } + if (clusterName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "clusterName", 6); + } + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("clusterName", clusterName); + tracingParameters.Add("apiVersion", apiVersion); + 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.EventHub/clusters/{clusterName}/quotaConfiguration/default").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{clusterName}", System.Uri.EscapeDataString(clusterName)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConfigurationOperationsExtensions.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConfigurationOperationsExtensions.cs new file mode 100644 index 000000000000..4fd16e0120d8 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConfigurationOperationsExtensions.cs @@ -0,0 +1,117 @@ +// +// 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.EventHub +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for ConfigurationOperations. + /// + public static partial class ConfigurationOperationsExtensions + { + /// + /// Replace all specified Event Hubs Cluster settings with those contained in + /// the request body. Leaves the settings not specified in the request body + /// unmodified. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// Parameters for creating an Event Hubs Cluster resource. + /// + public static ClusterQuotaConfigurationProperties Patch(this IConfigurationOperations operations, string resourceGroupName, string clusterName, ClusterQuotaConfigurationProperties parameters) + { + return operations.PatchAsync(resourceGroupName, clusterName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Replace all specified Event Hubs Cluster settings with those contained in + /// the request body. Leaves the settings not specified in the request body + /// unmodified. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// Parameters for creating an Event Hubs Cluster resource. + /// + /// + /// The cancellation token. + /// + public static async Task PatchAsync(this IConfigurationOperations operations, string resourceGroupName, string clusterName, ClusterQuotaConfigurationProperties parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PatchWithHttpMessagesAsync(resourceGroupName, clusterName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Get all Event Hubs Cluster settings - a collection of key/value pairs which + /// represent the quotas and settings imposed on the cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + public static ClusterQuotaConfigurationProperties Get(this IConfigurationOperations operations, string resourceGroupName, string clusterName) + { + return operations.GetAsync(resourceGroupName, clusterName).GetAwaiter().GetResult(); + } + + /// + /// Get all Event Hubs Cluster settings - a collection of key/value pairs which + /// represent the quotas and settings imposed on the cluster. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IConfigurationOperations operations, string resourceGroupName, string clusterName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, clusterName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConsumerGroupsOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConsumerGroupsOperations.cs index 787b1429ee67..c99556f24a71 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConsumerGroupsOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/ConsumerGroupsOperations.cs @@ -128,6 +128,10 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); @@ -152,14 +156,11 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -172,6 +173,7 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) tracingParameters.Add("eventHubName", eventHubName); tracingParameters.Add("consumerGroupName", consumerGroupName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); } @@ -184,9 +186,9 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) _url = _url.Replace("{consumerGroupName}", System.Uri.EscapeDataString(consumerGroupName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -385,6 +387,10 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); @@ -405,14 +411,11 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "consumerGroupName", 1); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -424,6 +427,7 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); tracingParameters.Add("consumerGroupName", consumerGroupName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } @@ -436,9 +440,9 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) _url = _url.Replace("{consumerGroupName}", System.Uri.EscapeDataString(consumerGroupName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -616,6 +620,10 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); @@ -636,14 +644,11 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "consumerGroupName", 1); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -655,6 +660,7 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); tracingParameters.Add("consumerGroupName", consumerGroupName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -667,9 +673,9 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) _url = _url.Replace("{consumerGroupName}", System.Uri.EscapeDataString(consumerGroupName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -873,15 +879,15 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -902,6 +908,7 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) { throw new ValidationException(ValidationRules.InclusiveMinimum, "top", 1); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -912,6 +919,7 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("skip", skip); tracingParameters.Add("top", top); tracingParameters.Add("cancellationToken", cancellationToken); @@ -925,9 +933,9 @@ internal ConsumerGroupsOperations(EventHubManagementClient client) _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (skip != null) { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperations.cs index cd3e2390f8d8..f1bb9e5ba8d9 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperations.cs @@ -51,7 +51,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) public EventHubManagementClient Client { get; private set; } /// - /// Check the give Namespace name availability. + /// Gets a list of authorization rules for a Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -59,8 +59,8 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// The Namespace name /// - /// - /// Parameters to check availability of the given Alias name + /// + /// The Disaster Recovery configuration name /// /// /// Headers that will be added to request. @@ -83,16 +83,8 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckNameAvailabilityWithHttpMessagesAsync(string resourceGroupName, string namespaceName, CheckNameAvailabilityParameter parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } if (resourceGroupName == null) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); @@ -123,14 +115,26 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (parameters == null) + if (alias == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "alias"); } - if (parameters != null) + if (alias != null) { - parameters.Validate(); + if (alias.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "alias", 50); + } + if (alias.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "alias", 1); + } } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -140,20 +144,22 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("alias", alias); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRules", 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/CheckNameAvailability").ToString(); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/authorizationRules").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -162,7 +168,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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) @@ -193,12 +199,6 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -249,7 +249,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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")) @@ -262,7 +262,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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) { @@ -282,7 +282,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Gets all Alias(Disaster Recovery configurations) + /// Gets an AuthorizationRule for a Namespace by rule name. /// /// /// Name of the resource group within the azure subscription. @@ -290,6 +290,12 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// The Namespace name /// + /// + /// The Disaster Recovery configuration name + /// + /// + /// The authorization rule name. + /// /// /// Headers that will be added to request. /// @@ -311,7 +317,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -343,14 +349,37 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (Client.ApiVersion == null) + if (alias == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "alias"); + } + if (alias != null) + { + if (alias.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "alias", 50); + } + if (alias.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "alias", 1); + } + } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -360,19 +389,24 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("alias", alias); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAuthorizationRule", 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/authorizationRules/{authorizationRuleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -462,7 +496,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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")) @@ -475,7 +509,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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) { @@ -495,7 +529,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Creates or updates a new Alias(Disaster Recovery configuration) + /// Gets the primary and secondary connection strings for the Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -506,8 +540,8 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// The Disaster Recovery configuration name /// - /// - /// Parameters required to create an Alias(Disaster Recovery configuration) + /// + /// The authorization rule name. /// /// /// Headers that will be added to request. @@ -530,7 +564,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, ArmDisasterRecovery parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -577,18 +611,22 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "alias", 1); } } - if (parameters == null) + if (authorizationRuleName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); } - if (Client.ApiVersion == null) + if (authorizationRuleName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -599,21 +637,23 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("alias", alias); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/authorizationRules/{authorizationRuleName}/listKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -622,7 +662,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -653,12 +693,6 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -679,7 +713,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -709,7 +743,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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")) @@ -722,7 +756,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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) { @@ -742,7 +776,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Deletes an Alias(Disaster Recovery configuration) + /// Check the give Namespace name availability. /// /// /// Name of the resource group within the azure subscription. @@ -750,8 +784,8 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// The Namespace name /// - /// - /// The Disaster Recovery configuration name + /// + /// Parameters to check availability of the given Alias name /// /// /// Headers that will be added to request. @@ -762,6 +796,9 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -771,8 +808,12 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CheckNameAvailabilityWithHttpMessagesAsync(string resourceGroupName, string namespaceName, CheckNameAvailabilityParameter parameters, 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"); @@ -803,29 +844,15 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (alias == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "alias"); - } - if (alias != null) - { - if (alias.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "alias", 50); - } - if (alias.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "alias", 1); - } - } - if (Client.ApiVersion == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.SubscriptionId == null) + if (parameters != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + parameters.Validate(); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -833,23 +860,23 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); - tracingParameters.Add("alias", alias); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/checkNameAvailability").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); - _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -858,7 +885,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -889,6 +916,12 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -939,13 +972,31 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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 == 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); @@ -954,8 +1005,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Retrieves Alias(Disaster Recovery configuration) for primary or secondary - /// namespace + /// Gets all Alias(Disaster Recovery configurations) /// /// /// Name of the resource group within the azure subscription. @@ -963,9 +1013,6 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// The Namespace name /// - /// - /// The Disaster Recovery configuration name - /// /// /// Headers that will be added to request. /// @@ -987,7 +1034,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1019,29 +1066,11 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (alias == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "alias"); - } - if (alias != null) - { - if (alias.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "alias", 50); - } - if (alias.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "alias", 1); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1051,21 +1080,20 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); - tracingParameters.Add("alias", alias); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); - _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1155,7 +1183,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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")) @@ -1168,7 +1196,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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) { @@ -1188,8 +1216,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// This operation disables the Disaster Recovery and stops replicating changes - /// from primary to secondary namespaces + /// Creates or updates a new Alias(Disaster Recovery configuration) /// /// /// Name of the resource group within the azure subscription. @@ -1200,6 +1227,9 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// The Disaster Recovery configuration name /// + /// + /// Parameters required to create an Alias(Disaster Recovery configuration) + /// /// /// Headers that will be added to request. /// @@ -1209,6 +1239,9 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -1218,7 +1251,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BreakPairingWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, ArmDisasterRecovery parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1265,14 +1298,15 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "alias", 1); } } - if (Client.ApiVersion == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1283,20 +1317,22 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("alias", alias); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BreakPairing", tracingParameters); + 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/breakPairing").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1305,7 +1341,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1336,6 +1372,12 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -1356,7 +1398,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1386,13 +1428,31 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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 == 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); @@ -1401,8 +1461,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Invokes GEO DR failover and reconfigure the alias to point to the secondary - /// namespace + /// Deletes an Alias(Disaster Recovery configuration) /// /// /// Name of the resource group within the azure subscription. @@ -1431,7 +1490,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task FailOverWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1478,14 +1537,11 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "alias", 1); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1496,20 +1552,21 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("alias", alias); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "FailOver", tracingParameters); + 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/failover").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1518,7 +1575,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1614,7 +1671,8 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Gets a list of authorization rules for a Namespace. + /// Retrieves Alias(Disaster Recovery configuration) for primary or secondary + /// namespace /// /// /// Name of the resource group within the azure subscription. @@ -1646,7 +1704,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1693,14 +1751,11 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "alias", 1); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1711,20 +1766,21 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("alias", alias); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRules", tracingParameters); + 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/AuthorizationRules").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1814,7 +1870,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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")) @@ -1827,7 +1883,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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) { @@ -1847,7 +1903,8 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Gets an AuthorizationRule for a Namespace by rule name. + /// This operation disables the Disaster Recovery and stops replicating changes + /// from primary to secondary namespaces /// /// /// Name of the resource group within the azure subscription. @@ -1858,9 +1915,6 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// The Disaster Recovery configuration name /// - /// - /// The authorization rule name. - /// /// /// Headers that will be added to request. /// @@ -1870,9 +1924,6 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1882,7 +1933,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BreakPairingWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1929,25 +1980,11 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "alias", 1); } } - if (authorizationRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); - } - if (authorizationRuleName != null) - { - if (authorizationRuleName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1958,22 +1995,21 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("alias", alias); - tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAuthorizationRule", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "BreakPairing", 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/AuthorizationRules/{authorizationRuleName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/breakPairing").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); - _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1982,7 +2018,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2063,31 +2099,13 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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 == 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); @@ -2096,7 +2114,8 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Gets the primary and secondary connection strings for the Namespace. + /// Invokes GEO DR failover and reconfigure the alias to point to the secondary + /// namespace /// /// /// Name of the resource group within the azure subscription. @@ -2107,9 +2126,6 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// The Disaster Recovery configuration name /// - /// - /// The authorization rule name. - /// /// /// Headers that will be added to request. /// @@ -2119,9 +2135,6 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -2131,7 +2144,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task FailOverWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2178,25 +2191,11 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "alias", 1); } } - if (authorizationRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); - } - if (authorizationRuleName != null) - { - if (authorizationRuleName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2207,22 +2206,21 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("alias", alias); - tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "FailOver", 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.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/AuthorizationRules/{authorizationRuleName}/listKeys").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/disasterRecoveryConfigs/{alias}/failover").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{alias}", System.Uri.EscapeDataString(alias)); - _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -2312,31 +2310,13 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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 == 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); @@ -2345,7 +2325,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Gets all Alias(Disaster Recovery configurations) + /// Gets a list of authorization rules for a Namespace. /// /// /// The NextLink from the previous successful call to List operation. @@ -2371,7 +2351,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -2386,7 +2366,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRulesNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -2480,7 +2460,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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")) @@ -2493,7 +2473,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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) { @@ -2513,7 +2493,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) } /// - /// Gets a list of authorization rules for a Namespace. + /// Gets all Alias(Disaster Recovery configurations) /// /// /// The NextLink from the previous successful call to List operation. @@ -2539,7 +2519,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -2554,7 +2534,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRulesNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -2648,7 +2628,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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")) @@ -2661,7 +2641,7 @@ internal DisasterRecoveryConfigsOperations(EventHubManagementClient 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) { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperationsExtensions.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperationsExtensions.cs index 50178f987975..ba97d5fd9f66 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperationsExtensions.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/DisasterRecoveryConfigsOperationsExtensions.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Management.EventHub public static partial class DisasterRecoveryConfigsOperationsExtensions { /// - /// Check the give Namespace name availability. + /// Gets a list of authorization rules for a Namespace. /// /// /// The operations group for this extension method. @@ -33,16 +33,16 @@ public static partial class DisasterRecoveryConfigsOperationsExtensions /// /// The Namespace name /// - /// - /// Parameters to check availability of the given Alias name + /// + /// The Disaster Recovery configuration name /// - public static CheckNameAvailabilityResult CheckNameAvailability(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, CheckNameAvailabilityParameter parameters) + public static IPage ListAuthorizationRules(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) { - return operations.CheckNameAvailabilityAsync(resourceGroupName, namespaceName, parameters).GetAwaiter().GetResult(); + return operations.ListAuthorizationRulesAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); } /// - /// Check the give Namespace name availability. + /// Gets a list of authorization rules for a Namespace. /// /// /// The operations group for this extension method. @@ -53,22 +53,22 @@ public static CheckNameAvailabilityResult CheckNameAvailability(this IDisasterRe /// /// The Namespace name /// - /// - /// Parameters to check availability of the given Alias name + /// + /// The Disaster Recovery configuration name /// /// /// The cancellation token. /// - public static async Task CheckNameAvailabilityAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, CheckNameAvailabilityParameter parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAuthorizationRulesAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckNameAvailabilityWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAuthorizationRulesWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets all Alias(Disaster Recovery configurations) + /// Gets an AuthorizationRule for a Namespace by rule name. /// /// /// The operations group for this extension method. @@ -79,13 +79,19 @@ public static CheckNameAvailabilityResult CheckNameAvailability(this IDisasterRe /// /// The Namespace name /// - public static IPage List(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName) + /// + /// The Disaster Recovery configuration name + /// + /// + /// The authorization rule name. + /// + public static AuthorizationRule GetAuthorizationRule(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, string authorizationRuleName) { - return operations.ListAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + return operations.GetAuthorizationRuleAsync(resourceGroupName, namespaceName, alias, authorizationRuleName).GetAwaiter().GetResult(); } /// - /// Gets all Alias(Disaster Recovery configurations) + /// Gets an AuthorizationRule for a Namespace by rule name. /// /// /// The operations group for this extension method. @@ -96,19 +102,25 @@ public static IPage List(this IDisasterRecoveryConfigsOpera /// /// The Namespace name /// + /// + /// The Disaster Recovery configuration name + /// + /// + /// The authorization rule name. + /// /// /// The cancellation token. /// - public static async Task> ListAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAuthorizationRuleAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates or updates a new Alias(Disaster Recovery configuration) + /// Gets the primary and secondary connection strings for the Namespace. /// /// /// The operations group for this extension method. @@ -122,16 +134,16 @@ public static IPage List(this IDisasterRecoveryConfigsOpera /// /// The Disaster Recovery configuration name /// - /// - /// Parameters required to create an Alias(Disaster Recovery configuration) + /// + /// The authorization rule name. /// - public static ArmDisasterRecovery CreateOrUpdate(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, ArmDisasterRecovery parameters) + public static AccessKeys ListKeys(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, string authorizationRuleName) { - return operations.CreateOrUpdateAsync(resourceGroupName, namespaceName, alias, parameters).GetAwaiter().GetResult(); + return operations.ListKeysAsync(resourceGroupName, namespaceName, alias, authorizationRuleName).GetAwaiter().GetResult(); } /// - /// Creates or updates a new Alias(Disaster Recovery configuration) + /// Gets the primary and secondary connection strings for the Namespace. /// /// /// The operations group for this extension method. @@ -145,22 +157,22 @@ public static ArmDisasterRecovery CreateOrUpdate(this IDisasterRecoveryConfigsOp /// /// The Disaster Recovery configuration name /// - /// - /// Parameters required to create an Alias(Disaster Recovery configuration) + /// + /// The authorization rule name. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, ArmDisasterRecovery parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListKeysAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes an Alias(Disaster Recovery configuration) + /// Check the give Namespace name availability. /// /// /// The operations group for this extension method. @@ -171,16 +183,16 @@ public static ArmDisasterRecovery CreateOrUpdate(this IDisasterRecoveryConfigsOp /// /// The Namespace name /// - /// - /// The Disaster Recovery configuration name + /// + /// Parameters to check availability of the given Alias name /// - public static void Delete(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) + public static CheckNameAvailabilityResult CheckNameAvailability(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, CheckNameAvailabilityParameter parameters) { - operations.DeleteAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); + return operations.CheckNameAvailabilityAsync(resourceGroupName, namespaceName, parameters).GetAwaiter().GetResult(); } /// - /// Deletes an Alias(Disaster Recovery configuration) + /// Check the give Namespace name availability. /// /// /// The operations group for this extension method. @@ -191,20 +203,22 @@ public static void Delete(this IDisasterRecoveryConfigsOperations operations, st /// /// The Namespace name /// - /// - /// The Disaster Recovery configuration name + /// + /// Parameters to check availability of the given Alias name /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckNameAvailabilityAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, CheckNameAvailabilityParameter parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CheckNameAvailabilityWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Retrieves Alias(Disaster Recovery configuration) for primary or secondary - /// namespace + /// Gets all Alias(Disaster Recovery configurations) /// /// /// The operations group for this extension method. @@ -215,17 +229,13 @@ public static void Delete(this IDisasterRecoveryConfigsOperations operations, st /// /// The Namespace name /// - /// - /// The Disaster Recovery configuration name - /// - public static ArmDisasterRecovery Get(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) + public static IPage List(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName) { - return operations.GetAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); + return operations.ListAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); } /// - /// Retrieves Alias(Disaster Recovery configuration) for primary or secondary - /// namespace + /// Gets all Alias(Disaster Recovery configurations) /// /// /// The operations group for this extension method. @@ -236,23 +246,19 @@ public static ArmDisasterRecovery Get(this IDisasterRecoveryConfigsOperations op /// /// The Namespace name /// - /// - /// The Disaster Recovery configuration name - /// /// /// The cancellation token. /// - public static async Task GetAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// This operation disables the Disaster Recovery and stops replicating changes - /// from primary to secondary namespaces + /// Creates or updates a new Alias(Disaster Recovery configuration) /// /// /// The operations group for this extension method. @@ -266,14 +272,16 @@ public static ArmDisasterRecovery Get(this IDisasterRecoveryConfigsOperations op /// /// The Disaster Recovery configuration name /// - public static void BreakPairing(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) + /// + /// Parameters required to create an Alias(Disaster Recovery configuration) + /// + public static ArmDisasterRecovery CreateOrUpdate(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, ArmDisasterRecovery parameters) { - operations.BreakPairingAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, namespaceName, alias, parameters).GetAwaiter().GetResult(); } /// - /// This operation disables the Disaster Recovery and stops replicating changes - /// from primary to secondary namespaces + /// Creates or updates a new Alias(Disaster Recovery configuration) /// /// /// The operations group for this extension method. @@ -287,17 +295,22 @@ public static void BreakPairing(this IDisasterRecoveryConfigsOperations operatio /// /// The Disaster Recovery configuration name /// + /// + /// Parameters required to create an Alias(Disaster Recovery configuration) + /// /// /// The cancellation token. /// - public static async Task BreakPairingAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, ArmDisasterRecovery parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.BreakPairingWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Invokes GEO DR failover and reconfigure the alias to point to the secondary - /// namespace + /// Deletes an Alias(Disaster Recovery configuration) /// /// /// The operations group for this extension method. @@ -311,14 +324,13 @@ public static void BreakPairing(this IDisasterRecoveryConfigsOperations operatio /// /// The Disaster Recovery configuration name /// - public static void FailOver(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) + public static void Delete(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) { - operations.FailOverAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); } /// - /// Invokes GEO DR failover and reconfigure the alias to point to the secondary - /// namespace + /// Deletes an Alias(Disaster Recovery configuration) /// /// /// The operations group for this extension method. @@ -335,13 +347,14 @@ public static void FailOver(this IDisasterRecoveryConfigsOperations operations, /// /// The cancellation token. /// - public static async Task FailOverAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.FailOverWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)).Dispose(); + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets a list of authorization rules for a Namespace. + /// Retrieves Alias(Disaster Recovery configuration) for primary or secondary + /// namespace /// /// /// The operations group for this extension method. @@ -355,13 +368,14 @@ public static void FailOver(this IDisasterRecoveryConfigsOperations operations, /// /// The Disaster Recovery configuration name /// - public static IPage ListAuthorizationRules(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) + public static ArmDisasterRecovery Get(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) { - return operations.ListAuthorizationRulesAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); } /// - /// Gets a list of authorization rules for a Namespace. + /// Retrieves Alias(Disaster Recovery configuration) for primary or secondary + /// namespace /// /// /// The operations group for this extension method. @@ -378,16 +392,17 @@ public static IPage ListAuthorizationRules(this IDisasterReco /// /// The cancellation token. /// - public static async Task> ListAuthorizationRulesAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAuthorizationRulesWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets an AuthorizationRule for a Namespace by rule name. + /// This operation disables the Disaster Recovery and stops replicating changes + /// from primary to secondary namespaces /// /// /// The operations group for this extension method. @@ -401,16 +416,14 @@ public static IPage ListAuthorizationRules(this IDisasterReco /// /// The Disaster Recovery configuration name /// - /// - /// The authorization rule name. - /// - public static AuthorizationRule GetAuthorizationRule(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, string authorizationRuleName) + public static void BreakPairing(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) { - return operations.GetAuthorizationRuleAsync(resourceGroupName, namespaceName, alias, authorizationRuleName).GetAwaiter().GetResult(); + operations.BreakPairingAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); } /// - /// Gets an AuthorizationRule for a Namespace by rule name. + /// This operation disables the Disaster Recovery and stops replicating changes + /// from primary to secondary namespaces /// /// /// The operations group for this extension method. @@ -424,22 +437,17 @@ public static AuthorizationRule GetAuthorizationRule(this IDisasterRecoveryConfi /// /// The Disaster Recovery configuration name /// - /// - /// The authorization rule name. - /// /// /// The cancellation token. /// - public static async Task GetAuthorizationRuleAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task BreakPairingAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.BreakPairingWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets the primary and secondary connection strings for the Namespace. + /// Invokes GEO DR failover and reconfigure the alias to point to the secondary + /// namespace /// /// /// The operations group for this extension method. @@ -453,16 +461,14 @@ public static AuthorizationRule GetAuthorizationRule(this IDisasterRecoveryConfi /// /// The Disaster Recovery configuration name /// - /// - /// The authorization rule name. - /// - public static AccessKeys ListKeys(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, string authorizationRuleName) + public static void FailOver(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias) { - return operations.ListKeysAsync(resourceGroupName, namespaceName, alias, authorizationRuleName).GetAwaiter().GetResult(); + operations.FailOverAsync(resourceGroupName, namespaceName, alias).GetAwaiter().GetResult(); } /// - /// Gets the primary and secondary connection strings for the Namespace. + /// Invokes GEO DR failover and reconfigure the alias to point to the secondary + /// namespace /// /// /// The operations group for this extension method. @@ -476,22 +482,16 @@ public static AccessKeys ListKeys(this IDisasterRecoveryConfigsOperations operat /// /// The Disaster Recovery configuration name /// - /// - /// The authorization rule name. - /// /// /// The cancellation token. /// - public static async Task ListKeysAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task FailOverAsync(this IDisasterRecoveryConfigsOperations operations, string resourceGroupName, string namespaceName, string alias, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.FailOverWithHttpMessagesAsync(resourceGroupName, namespaceName, alias, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets all Alias(Disaster Recovery configurations) + /// Gets a list of authorization rules for a Namespace. /// /// /// The operations group for this extension method. @@ -499,13 +499,13 @@ public static AccessKeys ListKeys(this IDisasterRecoveryConfigsOperations operat /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IDisasterRecoveryConfigsOperations operations, string nextPageLink) + public static IPage ListAuthorizationRulesNext(this IDisasterRecoveryConfigsOperations operations, string nextPageLink) { - return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListAuthorizationRulesNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets all Alias(Disaster Recovery configurations) + /// Gets a list of authorization rules for a Namespace. /// /// /// The operations group for this extension method. @@ -516,16 +516,16 @@ public static IPage ListNext(this IDisasterRecoveryConfigsO /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IDisasterRecoveryConfigsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAuthorizationRulesNextAsync(this IDisasterRecoveryConfigsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAuthorizationRulesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets a list of authorization rules for a Namespace. + /// Gets all Alias(Disaster Recovery configurations) /// /// /// The operations group for this extension method. @@ -533,13 +533,13 @@ public static IPage ListNext(this IDisasterRecoveryConfigsO /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListAuthorizationRulesNext(this IDisasterRecoveryConfigsOperations operations, string nextPageLink) + public static IPage ListNext(this IDisasterRecoveryConfigsOperations operations, string nextPageLink) { - return operations.ListAuthorizationRulesNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets a list of authorization rules for a Namespace. + /// Gets all Alias(Disaster Recovery configurations) /// /// /// The operations group for this extension method. @@ -550,9 +550,9 @@ public static IPage ListAuthorizationRulesNext(this IDisaster /// /// The cancellation token. /// - public static async Task> ListAuthorizationRulesNextAsync(this IDisasterRecoveryConfigsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListNextAsync(this IDisasterRecoveryConfigsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAuthorizationRulesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubManagementClient.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubManagementClient.cs index bbf9ef70a92e..6470528a5de5 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubManagementClient.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubManagementClient.cs @@ -21,9 +21,6 @@ namespace Microsoft.Azure.Management.EventHub using System.Net; using System.Net.Http; - /// - /// Azure Event Hubs client - /// public partial class EventHubManagementClient : ServiceClient, IEventHubManagementClient, IAzureClient { /// @@ -53,11 +50,6 @@ public partial class EventHubManagementClient : ServiceClient public string SubscriptionId { get; set; } - /// - /// Client API Version. - /// - public string ApiVersion { get; private set; } - /// /// The preferred language for the response. /// @@ -77,15 +69,20 @@ public partial class EventHubManagementClient : ServiceClient - /// Gets the IOperations. + /// Gets the IClustersOperations. /// - public virtual IOperations Operations { get; private set; } + public virtual IClustersOperations Clusters { get; private set; } /// /// Gets the INamespacesOperations. /// public virtual INamespacesOperations Namespaces { get; private set; } + /// + /// Gets the IConfigurationOperations. + /// + public virtual IConfigurationOperations Configuration { get; private set; } + /// /// Gets the IDisasterRecoveryConfigsOperations. /// @@ -101,6 +98,11 @@ public partial class EventHubManagementClient : ServiceClient public virtual IConsumerGroupsOperations ConsumerGroups { get; private set; } + /// + /// Gets the IOperations. + /// + public virtual IOperations Operations { get; private set; } + /// /// Gets the IRegionsOperations. /// @@ -347,14 +349,15 @@ public EventHubManagementClient(System.Uri baseUri, ServiceClientCredentials cre /// private void Initialize() { - Operations = new Operations(this); + Clusters = new ClustersOperations(this); Namespaces = new NamespacesOperations(this); + Configuration = new ConfigurationOperations(this); DisasterRecoveryConfigs = new DisasterRecoveryConfigsOperations(this); EventHubs = new EventHubsOperations(this); ConsumerGroups = new ConsumerGroupsOperations(this); + Operations = new Operations(this); Regions = new RegionsOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2017-04-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperations.cs index 6f2131569649..e32641016cb9 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperations.cs @@ -51,7 +51,7 @@ internal EventHubsOperations(EventHubManagementClient client) public EventHubManagementClient Client { get; private set; } /// - /// Gets all the Event Hubs in a Namespace. + /// Gets the authorization rules for an Event Hub. /// /// /// Name of the resource group within the azure subscription. @@ -59,15 +59,8 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// The Namespace name /// - /// - /// Skip is only used if a previous operation returned a partial result. If a - /// previous response contains a nextLink element, the value of the nextLink - /// element will include a skip parameter that specifies a starting point to - /// use for subsequent calls. - /// - /// - /// May be used to limit the number of results to the most recent N - /// usageDetails. + /// + /// The Event Hub name /// /// /// Headers that will be added to request. @@ -90,7 +83,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -122,30 +115,26 @@ internal EventHubsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); - } - if (skip > 1000) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "skip", 1000); - } - if (skip < 0) + if (eventHubName == null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); + throw new ValidationException(ValidationRules.CannotBeNull, "eventHubName"); } - if (top > 1000) + if (eventHubName != null) { - throw new ValidationException(ValidationRules.InclusiveMaximum, "top", 1000); + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } + if (eventHubName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); + } } - if (top < 1) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "top", 1); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -155,29 +144,22 @@ internal EventHubsOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); - tracingParameters.Add("skip", skip); - tracingParameters.Add("top", top); + tracingParameters.Add("eventHubName", eventHubName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByNamespace", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRules", 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.EventHub/namespaces/{namespaceName}/eventhubs").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); _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 (skip != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("$skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); - } - if (top != null) - { - _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -267,7 +249,7 @@ internal EventHubsOperations(EventHubManagementClient 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")) @@ -280,7 +262,7 @@ internal EventHubsOperations(EventHubManagementClient 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) { @@ -300,7 +282,9 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Creates or updates a new Event Hub as a nested resource within a Namespace. + /// Creates or updates an AuthorizationRule for the specified Event Hub. + /// Creation/update of the AuthorizationRule will take a few seconds to take + /// effect. /// /// /// Name of the resource group within the azure subscription. @@ -311,8 +295,11 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// - /// Parameters supplied to create an Event Hub resource. + /// The shared access AuthorizationRule. /// /// /// Headers that will be added to request. @@ -335,7 +322,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Eventhub parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -373,11 +360,26 @@ internal EventHubsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); } } + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } + } if (parameters == null) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); @@ -386,14 +388,11 @@ internal EventHubsOperations(EventHubManagementClient client) { parameters.Validate(); } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -404,21 +403,24 @@ internal EventHubsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateAuthorizationRule", 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.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -514,7 +516,7 @@ internal EventHubsOperations(EventHubManagementClient 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")) @@ -527,7 +529,7 @@ internal EventHubsOperations(EventHubManagementClient 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) { @@ -547,7 +549,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Deletes an Event Hub from the specified Namespace and resource group. + /// Gets an AuthorizationRule for an Event Hub by rule name. /// /// /// Name of the resource group within the azure subscription. @@ -558,6 +560,9 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// /// Headers that will be added to request. /// @@ -567,6 +572,9 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -576,7 +584,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -614,19 +622,31 @@ internal EventHubsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); } } - if (Client.ApiVersion == null) + if (authorizationRuleName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) + { + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -637,20 +657,23 @@ internal EventHubsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetAuthorizationRule", 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.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -659,7 +682,7 @@ internal EventHubsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -710,7 +733,7 @@ internal EventHubsOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -740,13 +763,31 @@ internal EventHubsOperations(EventHubManagementClient 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 == 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); @@ -755,7 +796,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Gets an Event Hubs description for the specified Event Hub. + /// Deletes an Event Hub AuthorizationRule. /// /// /// Name of the resource group within the azure subscription. @@ -766,6 +807,9 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// /// Headers that will be added to request. /// @@ -775,9 +819,6 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -787,7 +828,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -825,19 +866,31 @@ internal EventHubsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); } } - if (Client.ApiVersion == null) + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -848,20 +901,23 @@ internal EventHubsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteAuthorizationRule", 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.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -870,7 +926,7 @@ internal EventHubsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -921,7 +977,7 @@ internal EventHubsOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -951,31 +1007,13 @@ internal EventHubsOperations(EventHubManagementClient 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 == 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); @@ -984,7 +1022,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Gets the authorization rules for an Event Hub. + /// Gets the ACS and SAS connection strings for the Event Hub. /// /// /// Name of the resource group within the azure subscription. @@ -995,6 +1033,9 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// /// Headers that will be added to request. /// @@ -1016,7 +1057,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1054,19 +1095,31 @@ internal EventHubsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); } } - if (Client.ApiVersion == null) + if (authorizationRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + } + if (authorizationRuleName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + if (authorizationRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + } } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1077,20 +1130,23 @@ internal EventHubsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); + tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRules", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListKeys", 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.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}/listKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); + _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1099,7 +1155,7 @@ internal EventHubsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1180,7 +1236,7 @@ internal EventHubsOperations(EventHubManagementClient 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")) @@ -1193,7 +1249,7 @@ internal EventHubsOperations(EventHubManagementClient 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) { @@ -1213,7 +1269,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Creates or updates an AuthorizationRule for the specified Event Hub. + /// Regenerates the ACS and SAS connection strings for the Event Hub. /// /// /// Name of the resource group within the azure subscription. @@ -1228,7 +1284,8 @@ internal EventHubsOperations(EventHubManagementClient client) /// The authorization rule name. /// /// - /// The shared access AuthorizationRule. + /// Parameters supplied to regenerate the AuthorizationRule Keys + /// (PrimaryKey/SecondaryKey). /// /// /// Headers that will be added to request. @@ -1251,7 +1308,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, RegenerateAccessKeyParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1289,6 +1346,10 @@ internal EventHubsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); @@ -1313,14 +1374,11 @@ internal EventHubsOperations(EventHubManagementClient client) { parameters.Validate(); } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1333,21 +1391,22 @@ internal EventHubsOperations(EventHubManagementClient client) tracingParameters.Add("eventHubName", eventHubName); tracingParameters.Add("authorizationRuleName", authorizationRuleName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateAuthorizationRule", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "RegenerateKeys", 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.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}/regenerateKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1356,7 +1415,7 @@ internal EventHubsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1443,7 +1502,7 @@ internal EventHubsOperations(EventHubManagementClient 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")) @@ -1456,7 +1515,7 @@ internal EventHubsOperations(EventHubManagementClient 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) { @@ -1476,7 +1535,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Gets an AuthorizationRule for an Event Hub by rule name. + /// Gets all the Event Hubs in a Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -1484,11 +1543,15 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// The Namespace name /// - /// - /// The Event Hub name + /// + /// Skip is only used if a previous operation returned a partial result. If a + /// previous response contains a nextLink element, the value of the nextLink + /// element will include a skip parameter that specifies a starting point to + /// use for subsequent calls. /// - /// - /// The authorization rule name. + /// + /// May be used to limit the number of results to the most recent N + /// usageDetails. /// /// /// Headers that will be added to request. @@ -1511,7 +1574,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1543,36 +1606,27 @@ internal EventHubsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (eventHubName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "eventHubName"); - } - if (eventHubName != null) + if (Client.SubscriptionId == null) { - if (eventHubName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - if (authorizationRuleName == null) + if (skip > 1000) { - throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); + throw new ValidationException(ValidationRules.InclusiveMaximum, "skip", 1000); } - if (authorizationRuleName != null) + if (skip < 0) { - if (authorizationRuleName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); - } + throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); } - if (Client.ApiVersion == null) + if (top > 1000) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.InclusiveMaximum, "top", 1000); } - if (Client.SubscriptionId == null) + if (top < 1) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.InclusiveMinimum, "top", 1); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1582,23 +1636,30 @@ internal EventHubsOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); - tracingParameters.Add("eventHubName", eventHubName); - tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("skip", skip); + tracingParameters.Add("top", top); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetAuthorizationRule", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByNamespace", 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.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); - _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); - _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); + } + if (skip != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("$skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + } + if (top != null) + { + _queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"')))); } if (_queryParameters.Count > 0) { @@ -1688,7 +1749,7 @@ internal EventHubsOperations(EventHubManagementClient 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")) @@ -1701,7 +1762,7 @@ internal EventHubsOperations(EventHubManagementClient 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) { @@ -1721,7 +1782,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Deletes an Event Hub AuthorizationRule. + /// Creates or updates a new Event Hub as a nested resource within a Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -1732,8 +1793,8 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// The Event Hub name /// - /// - /// The authorization rule name. + /// + /// Parameters supplied to create an Event Hub resource. /// /// /// Headers that will be added to request. @@ -1744,6 +1805,9 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -1753,7 +1817,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Eventhub parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1791,30 +1855,28 @@ internal EventHubsOperations(EventHubManagementClient client) } if (eventHubName != null) { + if (eventHubName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); + } if (eventHubName.Length < 1) { throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); } } - if (authorizationRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); - } - if (authorizationRuleName != null) + if (parameters == null) { - if (authorizationRuleName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); - } + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.ApiVersion == null) + if (parameters != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + parameters.Validate(); } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1825,22 +1887,22 @@ internal EventHubsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); - tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteAuthorizationRule", tracingParameters); + 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.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); - _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1849,7 +1911,7 @@ internal EventHubsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1880,6 +1942,12 @@ internal EventHubsOperations(EventHubManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -1900,7 +1968,7 @@ internal EventHubsOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1930,13 +1998,31 @@ internal EventHubsOperations(EventHubManagementClient 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 == 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); @@ -1945,7 +2031,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Gets the ACS and SAS connection strings for the Event Hub. + /// Deletes an Event Hub from the specified Namespace and resource group. /// /// /// Name of the resource group within the azure subscription. @@ -1956,9 +2042,6 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// The Event Hub name /// - /// - /// The authorization rule name. - /// /// /// Headers that will be added to request. /// @@ -1968,9 +2051,6 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -1980,7 +2060,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2018,30 +2098,20 @@ internal EventHubsOperations(EventHubManagementClient client) } if (eventHubName != null) { - if (eventHubName.Length < 1) + if (eventHubName.Length > 50) { - throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); } - } - if (authorizationRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); - } - if (authorizationRuleName != null) - { - if (authorizationRuleName.Length < 1) + if (eventHubName.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2052,22 +2122,21 @@ internal EventHubsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); - tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListKeys", tracingParameters); + 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.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}/ListKeys").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); - _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -2076,7 +2145,7 @@ internal EventHubsOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -2127,7 +2196,7 @@ internal EventHubsOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2157,31 +2226,13 @@ internal EventHubsOperations(EventHubManagementClient 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 == 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); @@ -2190,7 +2241,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Regenerates the ACS and SAS connection strings for the Event Hub. + /// Gets an Event Hubs description for the specified Event Hub. /// /// /// Name of the resource group within the azure subscription. @@ -2201,13 +2252,6 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// The Event Hub name /// - /// - /// The authorization rule name. - /// - /// - /// Parameters supplied to regenerate the AuthorizationRule Keys - /// (PrimaryKey/SecondaryKey). - /// /// /// Headers that will be added to request. /// @@ -2229,7 +2273,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, RegenerateAccessKeyParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2267,38 +2311,20 @@ internal EventHubsOperations(EventHubManagementClient client) } if (eventHubName != null) { - if (eventHubName.Length < 1) + if (eventHubName.Length > 50) { - throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); + throw new ValidationException(ValidationRules.MaxLength, "eventHubName", 50); } - } - if (authorizationRuleName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "authorizationRuleName"); - } - if (authorizationRuleName != null) - { - if (authorizationRuleName.Length < 1) + if (eventHubName.Length < 1) { - throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); + throw new ValidationException(ValidationRules.MinLength, "eventHubName", 1); } } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2309,23 +2335,21 @@ internal EventHubsOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("eventHubName", eventHubName); - tracingParameters.Add("authorizationRuleName", authorizationRuleName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "RegenerateKeys", tracingParameters); + 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.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}/authorizationRules/{authorizationRuleName}/regenerateKeys").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/eventhubs/{eventHubName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{eventHubName}", System.Uri.EscapeDataString(eventHubName)); - _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -2334,7 +2358,7 @@ internal EventHubsOperations(EventHubManagementClient 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) @@ -2365,12 +2389,6 @@ internal EventHubsOperations(EventHubManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -2421,7 +2439,7 @@ internal EventHubsOperations(EventHubManagementClient 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")) @@ -2434,7 +2452,7 @@ internal EventHubsOperations(EventHubManagementClient 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) { @@ -2454,7 +2472,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Gets all the Event Hubs in a Namespace. + /// Gets the authorization rules for an Event Hub. /// /// /// The NextLink from the previous successful call to List operation. @@ -2480,7 +2498,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByNamespaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -2495,7 +2513,7 @@ internal EventHubsOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByNamespaceNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRulesNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -2589,7 +2607,7 @@ internal EventHubsOperations(EventHubManagementClient 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")) @@ -2602,7 +2620,7 @@ internal EventHubsOperations(EventHubManagementClient 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) { @@ -2622,7 +2640,7 @@ internal EventHubsOperations(EventHubManagementClient client) } /// - /// Gets the authorization rules for an Event Hub. + /// Gets all the Event Hubs in a Namespace. /// /// /// The NextLink from the previous successful call to List operation. @@ -2648,7 +2666,7 @@ internal EventHubsOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByNamespaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -2663,7 +2681,7 @@ internal EventHubsOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRulesNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByNamespaceNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -2757,7 +2775,7 @@ internal EventHubsOperations(EventHubManagementClient 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")) @@ -2770,7 +2788,7 @@ internal EventHubsOperations(EventHubManagementClient 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) { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperationsExtensions.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperationsExtensions.cs index 1d938e77908c..f42b107ee1a0 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperationsExtensions.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/EventHubsOperationsExtensions.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Management.EventHub public static partial class EventHubsOperationsExtensions { /// - /// Gets all the Event Hubs in a Namespace. + /// Gets the authorization rules for an Event Hub. /// /// /// The operations group for this extension method. @@ -33,23 +33,16 @@ public static partial class EventHubsOperationsExtensions /// /// The Namespace name /// - /// - /// Skip is only used if a previous operation returned a partial result. If a - /// previous response contains a nextLink element, the value of the nextLink - /// element will include a skip parameter that specifies a starting point to - /// use for subsequent calls. - /// - /// - /// May be used to limit the number of results to the most recent N - /// usageDetails. + /// + /// The Event Hub name /// - public static IPage ListByNamespace(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?)) + public static IPage ListAuthorizationRules(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName) { - return operations.ListByNamespaceAsync(resourceGroupName, namespaceName, skip, top).GetAwaiter().GetResult(); + return operations.ListAuthorizationRulesAsync(resourceGroupName, namespaceName, eventHubName).GetAwaiter().GetResult(); } /// - /// Gets all the Event Hubs in a Namespace. + /// Gets the authorization rules for an Event Hub. /// /// /// The operations group for this extension method. @@ -60,29 +53,24 @@ public static partial class EventHubsOperationsExtensions /// /// The Namespace name /// - /// - /// Skip is only used if a previous operation returned a partial result. If a - /// previous response contains a nextLink element, the value of the nextLink - /// element will include a skip parameter that specifies a starting point to - /// use for subsequent calls. - /// - /// - /// May be used to limit the number of results to the most recent N - /// usageDetails. + /// + /// The Event Hub name /// /// /// The cancellation token. /// - public static async Task> ListByNamespaceAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAuthorizationRulesAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByNamespaceWithHttpMessagesAsync(resourceGroupName, namespaceName, skip, top, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAuthorizationRulesWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates or updates a new Event Hub as a nested resource within a Namespace. + /// Creates or updates an AuthorizationRule for the specified Event Hub. + /// Creation/update of the AuthorizationRule will take a few seconds to take + /// effect. /// /// /// The operations group for this extension method. @@ -96,16 +84,21 @@ public static partial class EventHubsOperationsExtensions /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// - /// Parameters supplied to create an Event Hub resource. + /// The shared access AuthorizationRule. /// - public static Eventhub CreateOrUpdate(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, Eventhub parameters) + public static AuthorizationRule CreateOrUpdateAuthorizationRule(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, AuthorizationRule parameters) { - return operations.CreateOrUpdateAsync(resourceGroupName, namespaceName, eventHubName, parameters).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAuthorizationRuleAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, parameters).GetAwaiter().GetResult(); } /// - /// Creates or updates a new Event Hub as a nested resource within a Namespace. + /// Creates or updates an AuthorizationRule for the specified Event Hub. + /// Creation/update of the AuthorizationRule will take a few seconds to take + /// effect. /// /// /// The operations group for this extension method. @@ -119,22 +112,25 @@ public static Eventhub CreateOrUpdate(this IEventHubsOperations operations, stri /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// - /// Parameters supplied to create an Event Hub resource. + /// The shared access AuthorizationRule. /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, Eventhub parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAuthorizationRuleAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, AuthorizationRule parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes an Event Hub from the specified Namespace and resource group. + /// Gets an AuthorizationRule for an Event Hub by rule name. /// /// /// The operations group for this extension method. @@ -148,13 +144,16 @@ public static Eventhub CreateOrUpdate(this IEventHubsOperations operations, stri /// /// The Event Hub name /// - public static void Delete(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName) + /// + /// The authorization rule name. + /// + public static AuthorizationRule GetAuthorizationRule(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName) { - operations.DeleteAsync(resourceGroupName, namespaceName, eventHubName).GetAwaiter().GetResult(); + return operations.GetAuthorizationRuleAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName).GetAwaiter().GetResult(); } /// - /// Deletes an Event Hub from the specified Namespace and resource group. + /// Gets an AuthorizationRule for an Event Hub by rule name. /// /// /// The operations group for this extension method. @@ -168,16 +167,22 @@ public static void Delete(this IEventHubsOperations operations, string resourceG /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// /// The cancellation token. /// - public static async Task DeleteAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAuthorizationRuleAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.GetAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Gets an Event Hubs description for the specified Event Hub. + /// Deletes an Event Hub AuthorizationRule. /// /// /// The operations group for this extension method. @@ -191,13 +196,16 @@ public static void Delete(this IEventHubsOperations operations, string resourceG /// /// The Event Hub name /// - public static Eventhub Get(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName) + /// + /// The authorization rule name. + /// + public static void DeleteAuthorizationRule(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName) { - return operations.GetAsync(resourceGroupName, namespaceName, eventHubName).GetAwaiter().GetResult(); + operations.DeleteAuthorizationRuleAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName).GetAwaiter().GetResult(); } /// - /// Gets an Event Hubs description for the specified Event Hub. + /// Deletes an Event Hub AuthorizationRule. /// /// /// The operations group for this extension method. @@ -211,19 +219,19 @@ public static Eventhub Get(this IEventHubsOperations operations, string resource /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAuthorizationRuleAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Gets the authorization rules for an Event Hub. + /// Gets the ACS and SAS connection strings for the Event Hub. /// /// /// The operations group for this extension method. @@ -237,13 +245,16 @@ public static Eventhub Get(this IEventHubsOperations operations, string resource /// /// The Event Hub name /// - public static IPage ListAuthorizationRules(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName) + /// + /// The authorization rule name. + /// + public static AccessKeys ListKeys(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName) { - return operations.ListAuthorizationRulesAsync(resourceGroupName, namespaceName, eventHubName).GetAwaiter().GetResult(); + return operations.ListKeysAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName).GetAwaiter().GetResult(); } /// - /// Gets the authorization rules for an Event Hub. + /// Gets the ACS and SAS connection strings for the Event Hub. /// /// /// The operations group for this extension method. @@ -257,19 +268,22 @@ public static IPage ListAuthorizationRules(this IEventHubsOpe /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// /// The cancellation token. /// - public static async Task> ListAuthorizationRulesAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ListKeysAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAuthorizationRulesWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates or updates an AuthorizationRule for the specified Event Hub. + /// Regenerates the ACS and SAS connection strings for the Event Hub. /// /// /// The operations group for this extension method. @@ -287,15 +301,16 @@ public static IPage ListAuthorizationRules(this IEventHubsOpe /// The authorization rule name. /// /// - /// The shared access AuthorizationRule. + /// Parameters supplied to regenerate the AuthorizationRule Keys + /// (PrimaryKey/SecondaryKey). /// - public static AuthorizationRule CreateOrUpdateAuthorizationRule(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, AuthorizationRule parameters) + public static AccessKeys RegenerateKeys(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, RegenerateAccessKeyParameters parameters) { - return operations.CreateOrUpdateAuthorizationRuleAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, parameters).GetAwaiter().GetResult(); + return operations.RegenerateKeysAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, parameters).GetAwaiter().GetResult(); } /// - /// Creates or updates an AuthorizationRule for the specified Event Hub. + /// Regenerates the ACS and SAS connection strings for the Event Hub. /// /// /// The operations group for this extension method. @@ -313,21 +328,22 @@ public static AuthorizationRule CreateOrUpdateAuthorizationRule(this IEventHubsO /// The authorization rule name. /// /// - /// The shared access AuthorizationRule. + /// Parameters supplied to regenerate the AuthorizationRule Keys + /// (PrimaryKey/SecondaryKey). /// /// /// The cancellation token. /// - public static async Task CreateOrUpdateAuthorizationRuleAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, AuthorizationRule parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task RegenerateKeysAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, RegenerateAccessKeyParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.RegenerateKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets an AuthorizationRule for an Event Hub by rule name. + /// Gets all the Event Hubs in a Namespace. /// /// /// The operations group for this extension method. @@ -338,19 +354,23 @@ public static AuthorizationRule CreateOrUpdateAuthorizationRule(this IEventHubsO /// /// The Namespace name /// - /// - /// The Event Hub name + /// + /// Skip is only used if a previous operation returned a partial result. If a + /// previous response contains a nextLink element, the value of the nextLink + /// element will include a skip parameter that specifies a starting point to + /// use for subsequent calls. /// - /// - /// The authorization rule name. + /// + /// May be used to limit the number of results to the most recent N + /// usageDetails. /// - public static AuthorizationRule GetAuthorizationRule(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName) + public static IPage ListByNamespace(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?)) { - return operations.GetAuthorizationRuleAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName).GetAwaiter().GetResult(); + return operations.ListByNamespaceAsync(resourceGroupName, namespaceName, skip, top).GetAwaiter().GetResult(); } /// - /// Gets an AuthorizationRule for an Event Hub by rule name. + /// Gets all the Event Hubs in a Namespace. /// /// /// The operations group for this extension method. @@ -361,25 +381,29 @@ public static AuthorizationRule GetAuthorizationRule(this IEventHubsOperations o /// /// The Namespace name /// - /// - /// The Event Hub name + /// + /// Skip is only used if a previous operation returned a partial result. If a + /// previous response contains a nextLink element, the value of the nextLink + /// element will include a skip parameter that specifies a starting point to + /// use for subsequent calls. /// - /// - /// The authorization rule name. + /// + /// May be used to limit the number of results to the most recent N + /// usageDetails. /// /// /// The cancellation token. /// - public static async Task GetAuthorizationRuleAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByNamespaceAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByNamespaceWithHttpMessagesAsync(resourceGroupName, namespaceName, skip, top, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes an Event Hub AuthorizationRule. + /// Creates or updates a new Event Hub as a nested resource within a Namespace. /// /// /// The operations group for this extension method. @@ -393,16 +417,16 @@ public static AuthorizationRule GetAuthorizationRule(this IEventHubsOperations o /// /// The Event Hub name /// - /// - /// The authorization rule name. + /// + /// Parameters supplied to create an Event Hub resource. /// - public static void DeleteAuthorizationRule(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName) + public static Eventhub CreateOrUpdate(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, Eventhub parameters) { - operations.DeleteAuthorizationRuleAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName).GetAwaiter().GetResult(); + return operations.CreateOrUpdateAsync(resourceGroupName, namespaceName, eventHubName, parameters).GetAwaiter().GetResult(); } /// - /// Deletes an Event Hub AuthorizationRule. + /// Creates or updates a new Event Hub as a nested resource within a Namespace. /// /// /// The operations group for this extension method. @@ -416,19 +440,22 @@ public static void DeleteAuthorizationRule(this IEventHubsOperations operations, /// /// The Event Hub name /// - /// - /// The authorization rule name. + /// + /// Parameters supplied to create an Event Hub resource. /// /// /// The cancellation token. /// - public static async Task DeleteAuthorizationRuleAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, Eventhub parameters, CancellationToken cancellationToken = default(CancellationToken)) { - (await operations.DeleteAuthorizationRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } } /// - /// Gets the ACS and SAS connection strings for the Event Hub. + /// Deletes an Event Hub from the specified Namespace and resource group. /// /// /// The operations group for this extension method. @@ -442,16 +469,13 @@ public static void DeleteAuthorizationRule(this IEventHubsOperations operations, /// /// The Event Hub name /// - /// - /// The authorization rule name. - /// - public static AccessKeys ListKeys(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName) + public static void Delete(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName) { - return operations.ListKeysAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName).GetAwaiter().GetResult(); + operations.DeleteAsync(resourceGroupName, namespaceName, eventHubName).GetAwaiter().GetResult(); } /// - /// Gets the ACS and SAS connection strings for the Event Hub. + /// Deletes an Event Hub from the specified Namespace and resource group. /// /// /// The operations group for this extension method. @@ -465,22 +489,16 @@ public static AccessKeys ListKeys(this IEventHubsOperations operations, string r /// /// The Event Hub name /// - /// - /// The authorization rule name. - /// /// /// The cancellation token. /// - public static async Task ListKeysAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } + (await operations.DeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } /// - /// Regenerates the ACS and SAS connection strings for the Event Hub. + /// Gets an Event Hubs description for the specified Event Hub. /// /// /// The operations group for this extension method. @@ -494,20 +512,13 @@ public static AccessKeys ListKeys(this IEventHubsOperations operations, string r /// /// The Event Hub name /// - /// - /// The authorization rule name. - /// - /// - /// Parameters supplied to regenerate the AuthorizationRule Keys - /// (PrimaryKey/SecondaryKey). - /// - public static AccessKeys RegenerateKeys(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, RegenerateAccessKeyParameters parameters) + public static Eventhub Get(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName) { - return operations.RegenerateKeysAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, parameters).GetAwaiter().GetResult(); + return operations.GetAsync(resourceGroupName, namespaceName, eventHubName).GetAwaiter().GetResult(); } /// - /// Regenerates the ACS and SAS connection strings for the Event Hub. + /// Gets an Event Hubs description for the specified Event Hub. /// /// /// The operations group for this extension method. @@ -521,26 +532,19 @@ public static AccessKeys RegenerateKeys(this IEventHubsOperations operations, st /// /// The Event Hub name /// - /// - /// The authorization rule name. - /// - /// - /// Parameters supplied to regenerate the AuthorizationRule Keys - /// (PrimaryKey/SecondaryKey). - /// /// /// The cancellation token. /// - public static async Task RegenerateKeysAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, RegenerateAccessKeyParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IEventHubsOperations operations, string resourceGroupName, string namespaceName, string eventHubName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.RegenerateKeysWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, authorizationRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, namespaceName, eventHubName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets all the Event Hubs in a Namespace. + /// Gets the authorization rules for an Event Hub. /// /// /// The operations group for this extension method. @@ -548,13 +552,13 @@ public static AccessKeys RegenerateKeys(this IEventHubsOperations operations, st /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListByNamespaceNext(this IEventHubsOperations operations, string nextPageLink) + public static IPage ListAuthorizationRulesNext(this IEventHubsOperations operations, string nextPageLink) { - return operations.ListByNamespaceNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListAuthorizationRulesNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets all the Event Hubs in a Namespace. + /// Gets the authorization rules for an Event Hub. /// /// /// The operations group for this extension method. @@ -565,16 +569,16 @@ public static IPage ListByNamespaceNext(this IEventHubsOperations oper /// /// The cancellation token. /// - public static async Task> ListByNamespaceNextAsync(this IEventHubsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListAuthorizationRulesNextAsync(this IEventHubsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListByNamespaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListAuthorizationRulesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Gets the authorization rules for an Event Hub. + /// Gets all the Event Hubs in a Namespace. /// /// /// The operations group for this extension method. @@ -582,13 +586,13 @@ public static IPage ListByNamespaceNext(this IEventHubsOperations oper /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListAuthorizationRulesNext(this IEventHubsOperations operations, string nextPageLink) + public static IPage ListByNamespaceNext(this IEventHubsOperations operations, string nextPageLink) { - return operations.ListAuthorizationRulesNextAsync(nextPageLink).GetAwaiter().GetResult(); + return operations.ListByNamespaceNextAsync(nextPageLink).GetAwaiter().GetResult(); } /// - /// Gets the authorization rules for an Event Hub. + /// Gets all the Event Hubs in a Namespace. /// /// /// The operations group for this extension method. @@ -599,9 +603,9 @@ public static IPage ListAuthorizationRulesNext(this IEventHub /// /// The cancellation token. /// - public static async Task> ListAuthorizationRulesNextAsync(this IEventHubsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByNamespaceNextAsync(this IEventHubsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListAuthorizationRulesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByNamespaceNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IClustersOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IClustersOperations.cs new file mode 100644 index 000000000000..1f72cac29c80 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IClustersOperations.cs @@ -0,0 +1,298 @@ +// +// 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.EventHub +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ClustersOperations operations. + /// + public partial interface IClustersOperations + { + /// + /// List the quantity of available pre-provisioned Event Hubs Clusters, + /// indexed by Azure region. + /// + /// + /// 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> ListAvailableClustersWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the available Event Hubs Clusters within an ARM resource + /// group + /// + /// + /// Name of the resource group within the azure 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the resource description of the specified Event Hubs Cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates an instance of an Event Hubs Cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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> PutWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Modifies mutable properties on the Event Hubs Cluster. This + /// operation is idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The properties of the Event Hubs Cluster which should be updated. + /// + /// + /// 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> PatchWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes an existing Event Hubs Cluster. This operation is + /// idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// List all Event Hubs Namespace IDs in an Event Hubs Dedicated + /// Cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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> ListNamespacesWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates an instance of an Event Hubs Cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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> BeginPutWithHttpMessagesAsync(string resourceGroupName, string clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Modifies mutable properties on the Event Hubs Cluster. This + /// operation is idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// The properties of the Event Hubs Cluster which should be updated. + /// + /// + /// 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> BeginPatchWithHttpMessagesAsync(string resourceGroupName, string clusterName, Cluster parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes an existing Event Hubs Cluster. This operation is + /// idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Lists the available Event Hubs Clusters within an ARM 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/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IConfigurationOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IConfigurationOperations.cs new file mode 100644 index 000000000000..089559f93e19 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IConfigurationOperations.cs @@ -0,0 +1,84 @@ +// +// 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.EventHub +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// ConfigurationOperations operations. + /// + public partial interface IConfigurationOperations + { + /// + /// Replace all specified Event Hubs Cluster settings with those + /// contained in the request body. Leaves the settings not specified in + /// the request body unmodified. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// Parameters for creating an Event Hubs Cluster 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> PatchWithHttpMessagesAsync(string resourceGroupName, string clusterName, ClusterQuotaConfigurationProperties parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Get all Event Hubs Cluster settings - a collection of key/value + /// pairs which represent the quotas and settings imposed on the + /// cluster. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The name of the Event Hubs Cluster. + /// + /// + /// 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 clusterName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IDisasterRecoveryConfigsOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IDisasterRecoveryConfigsOperations.cs index 6632c9abf1e3..599fad1d2fdb 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IDisasterRecoveryConfigsOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IDisasterRecoveryConfigsOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.EventHub public partial interface IDisasterRecoveryConfigsOperations { /// - /// Check the give Namespace name availability. + /// Gets a list of authorization rules for a Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -32,8 +32,8 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// The Namespace name /// - /// - /// Parameters to check availability of the given Alias name + /// + /// The Disaster Recovery configuration name /// /// /// The headers that will be added to request. @@ -50,9 +50,9 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when a required parameter is null /// - Task> CheckNameAvailabilityWithHttpMessagesAsync(string resourceGroupName, string namespaceName, CheckNameAvailabilityParameter parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets all Alias(Disaster Recovery configurations) + /// Gets an AuthorizationRule for a Namespace by rule name. /// /// /// Name of the resource group within the azure subscription. @@ -60,6 +60,12 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// The Namespace name /// + /// + /// The Disaster Recovery configuration name + /// + /// + /// The authorization rule name. + /// /// /// The headers that will be added to request. /// @@ -75,9 +81,10 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates or updates a new Alias(Disaster Recovery configuration) + /// Gets the primary and secondary connection strings for the + /// Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -88,9 +95,8 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// The Disaster Recovery configuration name /// - /// - /// Parameters required to create an Alias(Disaster Recovery - /// configuration) + /// + /// The authorization rule name. /// /// /// The headers that will be added to request. @@ -107,9 +113,9 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, ArmDisasterRecovery parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes an Alias(Disaster Recovery configuration) + /// Check the give Namespace name availability. /// /// /// Name of the resource group within the azure subscription. @@ -117,8 +123,8 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// The Namespace name /// - /// - /// The Disaster Recovery configuration name + /// + /// Parameters to check availability of the given Alias name /// /// /// The headers that will be added to request. @@ -129,13 +135,15 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CheckNameAvailabilityWithHttpMessagesAsync(string resourceGroupName, string namespaceName, CheckNameAvailabilityParameter parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Retrieves Alias(Disaster Recovery configuration) for primary or - /// secondary namespace + /// Gets all Alias(Disaster Recovery configurations) /// /// /// Name of the resource group within the azure subscription. @@ -143,9 +151,6 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// The Namespace name /// - /// - /// The Disaster Recovery configuration name - /// /// /// The headers that will be added to request. /// @@ -161,10 +166,9 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// This operation disables the Disaster Recovery and stops replicating - /// changes from primary to secondary namespaces + /// Creates or updates a new Alias(Disaster Recovery configuration) /// /// /// Name of the resource group within the azure subscription. @@ -175,6 +179,10 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// The Disaster Recovery configuration name /// + /// + /// Parameters required to create an Alias(Disaster Recovery + /// configuration) + /// /// /// The headers that will be added to request. /// @@ -184,13 +192,15 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task BreakPairingWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, ArmDisasterRecovery parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Invokes GEO DR failover and reconfigure the alias to point to the - /// secondary namespace + /// Deletes an Alias(Disaster Recovery configuration) /// /// /// Name of the resource group within the azure subscription. @@ -213,9 +223,10 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when a required parameter is null /// - Task FailOverWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of authorization rules for a Namespace. + /// Retrieves Alias(Disaster Recovery configuration) for primary or + /// secondary namespace /// /// /// Name of the resource group within the azure subscription. @@ -241,9 +252,10 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when a required parameter is null /// - Task>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets an AuthorizationRule for a Namespace by rule name. + /// This operation disables the Disaster Recovery and stops replicating + /// changes from primary to secondary namespaces /// /// /// Name of the resource group within the azure subscription. @@ -254,9 +266,6 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// The Disaster Recovery configuration name /// - /// - /// The authorization rule name. - /// /// /// The headers that will be added to request. /// @@ -266,16 +275,13 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BreakPairingWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the primary and secondary connection strings for the - /// Namespace. + /// Invokes GEO DR failover and reconfigure the alias to point to the + /// secondary namespace /// /// /// Name of the resource group within the azure subscription. @@ -286,9 +292,6 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// The Disaster Recovery configuration name /// - /// - /// The authorization rule name. - /// /// /// The headers that will be added to request. /// @@ -298,15 +301,12 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task FailOverWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string alias, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets all Alias(Disaster Recovery configurations) + /// Gets a list of authorization rules for a Namespace. /// /// /// The NextLink from the previous successful call to List operation. @@ -326,9 +326,9 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets a list of authorization rules for a Namespace. + /// Gets all Alias(Disaster Recovery configurations) /// /// /// The NextLink from the previous successful call to List operation. @@ -348,6 +348,6 @@ public partial interface IDisasterRecoveryConfigsOperations /// /// Thrown when a required parameter is null /// - Task>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubManagementClient.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubManagementClient.cs index 78dbe74784b2..b15157a38092 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubManagementClient.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubManagementClient.cs @@ -16,7 +16,6 @@ namespace Microsoft.Azure.Management.EventHub using Newtonsoft.Json; /// - /// Azure Event Hubs client /// public partial interface IEventHubManagementClient : System.IDisposable { @@ -47,11 +46,6 @@ public partial interface IEventHubManagementClient : System.IDisposable /// string SubscriptionId { get; set; } - /// - /// Client API Version. - /// - string ApiVersion { get; } - /// /// The preferred language for the response. /// @@ -72,15 +66,20 @@ public partial interface IEventHubManagementClient : System.IDisposable /// - /// Gets the IOperations. + /// Gets the IClustersOperations. /// - IOperations Operations { get; } + IClustersOperations Clusters { get; } /// /// Gets the INamespacesOperations. /// INamespacesOperations Namespaces { get; } + /// + /// Gets the IConfigurationOperations. + /// + IConfigurationOperations Configuration { get; } + /// /// Gets the IDisasterRecoveryConfigsOperations. /// @@ -96,6 +95,11 @@ public partial interface IEventHubManagementClient : System.IDisposable /// IConsumerGroupsOperations ConsumerGroups { get; } + /// + /// Gets the IOperations. + /// + IOperations Operations { get; } + /// /// Gets the IRegionsOperations. /// diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubsOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubsOperations.cs index 8337a6e60f0e..ab905652993d 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubsOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/IEventHubsOperations.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.EventHub public partial interface IEventHubsOperations { /// - /// Gets all the Event Hubs in a Namespace. + /// Gets the authorization rules for an Event Hub. /// /// /// Name of the resource group within the azure subscription. @@ -32,15 +32,8 @@ public partial interface IEventHubsOperations /// /// The Namespace name /// - /// - /// Skip is only used if a previous operation returned a partial - /// result. If a previous response contains a nextLink element, the - /// value of the nextLink element will include a skip parameter that - /// specifies a starting point to use for subsequent calls. - /// - /// - /// May be used to limit the number of results to the most recent N - /// usageDetails. + /// + /// The Event Hub name /// /// /// The headers that will be added to request. @@ -57,10 +50,11 @@ public partial interface IEventHubsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates or updates a new Event Hub as a nested resource within a - /// Namespace. + /// Creates or updates an AuthorizationRule for the specified Event + /// Hub. Creation/update of the AuthorizationRule will take a few + /// seconds to take effect. /// /// /// Name of the resource group within the azure subscription. @@ -71,8 +65,11 @@ public partial interface IEventHubsOperations /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// - /// Parameters supplied to create an Event Hub resource. + /// The shared access AuthorizationRule. /// /// /// The headers that will be added to request. @@ -89,10 +86,9 @@ public partial interface IEventHubsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Eventhub parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes an Event Hub from the specified Namespace and resource - /// group. + /// Gets an AuthorizationRule for an Event Hub by rule name. /// /// /// Name of the resource group within the azure subscription. @@ -103,6 +99,9 @@ public partial interface IEventHubsOperations /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// /// The headers that will be added to request. /// @@ -112,12 +111,15 @@ public partial interface IEventHubsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets an Event Hubs description for the specified Event Hub. + /// Deletes an Event Hub AuthorizationRule. /// /// /// Name of the resource group within the azure subscription. @@ -128,6 +130,9 @@ public partial interface IEventHubsOperations /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// /// The headers that will be added to request. /// @@ -137,15 +142,12 @@ public partial interface IEventHubsOperations /// /// 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 namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the authorization rules for an Event Hub. + /// Gets the ACS and SAS connection strings for the Event Hub. /// /// /// Name of the resource group within the azure subscription. @@ -156,6 +158,9 @@ public partial interface IEventHubsOperations /// /// The Event Hub name /// + /// + /// The authorization rule name. + /// /// /// The headers that will be added to request. /// @@ -171,10 +176,9 @@ public partial interface IEventHubsOperations /// /// Thrown when a required parameter is null /// - Task>> ListAuthorizationRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates or updates an AuthorizationRule for the specified Event - /// Hub. + /// Regenerates the ACS and SAS connection strings for the Event Hub. /// /// /// Name of the resource group within the azure subscription. @@ -189,7 +193,8 @@ public partial interface IEventHubsOperations /// The authorization rule name. /// /// - /// The shared access AuthorizationRule. + /// Parameters supplied to regenerate the AuthorizationRule Keys + /// (PrimaryKey/SecondaryKey). /// /// /// The headers that will be added to request. @@ -206,9 +211,9 @@ public partial interface IEventHubsOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, AuthorizationRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, RegenerateAccessKeyParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets an AuthorizationRule for an Event Hub by rule name. + /// Gets all the Event Hubs in a Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -216,11 +221,15 @@ public partial interface IEventHubsOperations /// /// The Namespace name /// - /// - /// The Event Hub name + /// + /// Skip is only used if a previous operation returned a partial + /// result. If a previous response contains a nextLink element, the + /// value of the nextLink element will include a skip parameter that + /// specifies a starting point to use for subsequent calls. /// - /// - /// The authorization rule name. + /// + /// May be used to limit the number of results to the most recent N + /// usageDetails. /// /// /// The headers that will be added to request. @@ -237,9 +246,10 @@ public partial interface IEventHubsOperations /// /// Thrown when a required parameter is null /// - Task> GetAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByNamespaceWithHttpMessagesAsync(string resourceGroupName, string namespaceName, int? skip = default(int?), int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes an Event Hub AuthorizationRule. + /// Creates or updates a new Event Hub as a nested resource within a + /// Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -250,8 +260,8 @@ public partial interface IEventHubsOperations /// /// The Event Hub name /// - /// - /// The authorization rule name. + /// + /// Parameters supplied to create an Event Hub resource. /// /// /// The headers that will be added to request. @@ -262,12 +272,16 @@ public partial interface IEventHubsOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task DeleteAuthorizationRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Eventhub parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the ACS and SAS connection strings for the Event Hub. + /// Deletes an Event Hub from the specified Namespace and resource + /// group. /// /// /// Name of the resource group within the azure subscription. @@ -278,9 +292,6 @@ public partial interface IEventHubsOperations /// /// The Event Hub name /// - /// - /// The authorization rule name. - /// /// /// The headers that will be added to request. /// @@ -290,15 +301,12 @@ public partial interface IEventHubsOperations /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// - Task> ListKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Regenerates the ACS and SAS connection strings for the Event Hub. + /// Gets an Event Hubs description for the specified Event Hub. /// /// /// Name of the resource group within the azure subscription. @@ -309,13 +317,6 @@ public partial interface IEventHubsOperations /// /// The Event Hub name /// - /// - /// The authorization rule name. - /// - /// - /// Parameters supplied to regenerate the AuthorizationRule Keys - /// (PrimaryKey/SecondaryKey). - /// /// /// The headers that will be added to request. /// @@ -331,9 +332,9 @@ public partial interface IEventHubsOperations /// /// Thrown when a required parameter is null /// - Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, string authorizationRuleName, RegenerateAccessKeyParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string eventHubName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets all the Event Hubs in a Namespace. + /// Gets the authorization rules for an Event Hub. /// /// /// The NextLink from the previous successful call to List operation. @@ -353,9 +354,9 @@ public partial interface IEventHubsOperations /// /// Thrown when a required parameter is null /// - Task>> ListByNamespaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the authorization rules for an Event Hub. + /// Gets all the Event Hubs in a Namespace. /// /// /// The NextLink from the previous successful call to List operation. @@ -375,6 +376,6 @@ public partial interface IEventHubsOperations /// /// Thrown when a required parameter is null /// - Task>> ListAuthorizationRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByNamespaceNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/INamespacesOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/INamespacesOperations.cs index c5d90965e6b4..21da6f998776 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/INamespacesOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/INamespacesOperations.cs @@ -24,10 +24,44 @@ namespace Microsoft.Azure.Management.EventHub public partial interface INamespacesOperations { /// - /// Check the give Namespace name availability. + /// Gets a list of IP Filter rules for a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// 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>> ListIPFilterRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates an IpFilterRule for a Namespace. /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// /// - /// Parameters to check availability of the given Namespace name + /// The Namespace IpFilterRule. /// /// /// The headers that will be added to request. @@ -44,7 +78,60 @@ public partial interface INamespacesOperations /// /// Thrown when a required parameter is null /// - Task> CheckNameAvailabilityWithHttpMessagesAsync(CheckNameAvailabilityParameter parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CreateOrUpdateIpFilterRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string ipFilterRuleName, IpFilterRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes an IpFilterRule for a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// + /// + /// 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 DeleteIpFilterRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string ipFilterRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets an IpFilterRule for a Namespace by rule name. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// + /// + /// 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> GetIpFilterRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string ipFilterRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all the available Namespaces within a subscription, /// irrespective of the resource groups. @@ -194,7 +281,144 @@ public partial interface INamespacesOperations /// Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, EHNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets messaging plan for specified namespace. + /// Gets a list of VirtualNetwork rules for a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// 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>> ListVirtualNetworkRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Creates or updates an VirtualNetworkRule for a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + /// + /// The Namespace VirtualNetworkRule. + /// + /// + /// 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> CreateOrUpdateVirtualNetworkRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string virtualNetworkRuleName, VirtualNetworkRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes an VirtualNetworkRule for a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + /// + /// 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 DeleteVirtualNetworkRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string virtualNetworkRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets an VirtualNetworkRule for a Namespace by rule name. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + /// + /// 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> GetVirtualNetworkRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string virtualNetworkRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Create or update NetworkRuleSet for a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Namespace IpFilterRule. + /// + /// + /// 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> CreateOrUpdateNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, NetworkRuleSet parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets NetworkRuleSet for a Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -217,7 +441,7 @@ public partial interface INamespacesOperations /// /// Thrown when a required parameter is null /// - Task> GetMessagingPlanWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a list of authorization rules for a Namespace. /// @@ -389,16 +613,10 @@ public partial interface INamespacesOperations /// Task> RegenerateKeysWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string authorizationRuleName, RegenerateAccessKeyParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Create or update NetworkRuleSet for a Namespace. + /// Check the give Namespace name availability. /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name - /// /// - /// The Namespace IpFilterRule. + /// Parameters to check availability of the given Namespace name /// /// /// The headers that will be added to request. @@ -415,9 +633,10 @@ public partial interface INamespacesOperations /// /// Thrown when a required parameter is null /// - Task> CreateOrUpdateNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, NetworkRuleSet parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> CheckNameAvailabilityWithHttpMessagesAsync(CheckNameAvailabilityParameter parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets NetworkRuleSet for a Namespace. + /// Creates or updates a namespace. Once created, this namespace's + /// resource manifest is immutable. This operation is idempotent. /// /// /// Name of the resource group within the azure subscription. @@ -425,6 +644,9 @@ public partial interface INamespacesOperations /// /// The Namespace name /// + /// + /// Parameters for creating a namespace resource. + /// /// /// The headers that will be added to request. /// @@ -440,10 +662,10 @@ public partial interface INamespacesOperations /// /// Thrown when a required parameter is null /// - Task> GetNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, EHNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates or updates a namespace. Once created, this namespace's - /// resource manifest is immutable. This operation is idempotent. + /// Deletes an existing namespace. This operation also removes all + /// associated resources under the namespace. /// /// /// Name of the resource group within the azure subscription. @@ -451,9 +673,6 @@ public partial interface INamespacesOperations /// /// The Namespace name /// - /// - /// Parameters for creating a namespace resource. - /// /// /// The headers that will be added to request. /// @@ -463,22 +682,15 @@ public partial interface INamespacesOperations /// /// 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 namespaceName, EHNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes an existing namespace. This operation also removes all - /// associated resources under the namespace. + /// Gets a list of IP Filter rules for a Namespace. /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name + /// + /// The NextLink from the previous successful call to List operation. /// /// /// The headers that will be added to request. @@ -489,10 +701,13 @@ public partial interface INamespacesOperations /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// - Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListIPFilterRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Lists all the available Namespaces within a subscription, /// irrespective of the resource groups. @@ -539,6 +754,28 @@ public partial interface INamespacesOperations /// Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Gets a list of VirtualNetwork rules for a 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>> ListVirtualNetworkRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Gets a list of authorization rules for a Namespace. /// /// diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ArmDisasterRecovery.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ArmDisasterRecovery.cs index bd4a1dd98264..3adb82e2c1df 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ArmDisasterRecovery.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ArmDisasterRecovery.cs @@ -33,9 +33,9 @@ public ArmDisasterRecovery() /// /// Initializes a new instance of the ArmDisasterRecovery class. /// - /// Resource Id - /// Resource name - /// Resource type + /// Resource ID. + /// Resource name. + /// Resource type. /// Provisioning state of the /// Alias(Disaster Recovery configuration) - possible values 'Accepted' /// or 'Succeeded' or 'Failed'. Possible values include: 'Accepted', diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AuthorizationRule.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AuthorizationRule.cs index a8974e007485..8b8fa81ae317 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AuthorizationRule.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AuthorizationRule.cs @@ -35,9 +35,9 @@ public AuthorizationRule() /// Initializes a new instance of the AuthorizationRule class. /// /// The rights associated with the rule. - /// Resource Id - /// Resource name - /// Resource type + /// Resource ID. + /// Resource name. + /// Resource type. public AuthorizationRule(IList rights, string id = default(string), string name = default(string), string type = default(string)) : base(id, name, type) { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AvailableCluster.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AvailableCluster.cs new file mode 100644 index 000000000000..6127482f0443 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AvailableCluster.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.EventHub.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Pre-provisioned and readily available Event Hubs Cluster count per + /// region. + /// + public partial class AvailableCluster + { + /// + /// Initializes a new instance of the AvailableCluster class. + /// + public AvailableCluster() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AvailableCluster class. + /// + /// Location fo the Available Cluster + public AvailableCluster(string location = default(string)) + { + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets location fo the Available Cluster + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AvailableClustersList.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AvailableClustersList.cs new file mode 100644 index 000000000000..40f1f9724ce3 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/AvailableClustersList.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.EventHub.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The response of the List Available Clusters operation. + /// + public partial class AvailableClustersList + { + /// + /// Initializes a new instance of the AvailableClustersList class. + /// + public AvailableClustersList() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the AvailableClustersList class. + /// + /// The count of readily available and + /// pre-provisioned Event Hubs Clusters per region. + public AvailableClustersList(IList value = default(IList)) + { + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the count of readily available and pre-provisioned + /// Event Hubs Clusters per region. + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Cluster.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Cluster.cs new file mode 100644 index 000000000000..ee2568e70eab --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Cluster.cs @@ -0,0 +1,111 @@ +// +// 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.EventHub.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Single Event Hubs Cluster resource in List or Get operations. + /// + [Rest.Serialization.JsonTransformation] + public partial class Cluster : TrackedResource + { + /// + /// Initializes a new instance of the Cluster class. + /// + public Cluster() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Cluster class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource location. + /// Resource tags. + /// Properties of the cluster SKU. + /// The UTC time when the Event Hubs Cluster was + /// created. + /// The UTC time when the Event Hubs Cluster was + /// last updated. + /// The metric ID of the cluster resource. + /// Provided by the service and not modifiable by the user. + /// Status of the Cluster resource + public Cluster(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), ClusterSku sku = default(ClusterSku), string created = default(string), string updated = default(string), string metricId = default(string), string status = default(string)) + : base(id, name, type, location, tags) + { + Sku = sku; + Created = created; + Updated = updated; + MetricId = metricId; + Status = status; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets properties of the cluster SKU. + /// + [JsonProperty(PropertyName = "sku")] + public ClusterSku Sku { get; set; } + + /// + /// Gets the UTC time when the Event Hubs Cluster was created. + /// + [JsonProperty(PropertyName = "properties.created")] + public string Created { get; private set; } + + /// + /// Gets the UTC time when the Event Hubs Cluster was last updated. + /// + [JsonProperty(PropertyName = "properties.updated")] + public string Updated { get; private set; } + + /// + /// Gets the metric ID of the cluster resource. Provided by the service + /// and not modifiable by the user. + /// + [JsonProperty(PropertyName = "properties.metricId")] + public string MetricId { get; private set; } + + /// + /// Gets status of the Cluster resource + /// + [JsonProperty(PropertyName = "properties.status")] + public string Status { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Sku != null) + { + Sku.Validate(); + } + } + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ClusterQuotaConfigurationProperties.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ClusterQuotaConfigurationProperties.cs new file mode 100644 index 000000000000..a5998f78a000 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ClusterQuotaConfigurationProperties.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.EventHub.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Contains all settings for the cluster. + /// + public partial class ClusterQuotaConfigurationProperties + { + /// + /// Initializes a new instance of the + /// ClusterQuotaConfigurationProperties class. + /// + public ClusterQuotaConfigurationProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// ClusterQuotaConfigurationProperties class. + /// + /// All possible Cluster settings - a collection + /// of key/value paired settings which apply to quotas and + /// configurations imposed on the cluster. + public ClusterQuotaConfigurationProperties(IDictionary settings = default(IDictionary)) + { + Settings = settings; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets all possible Cluster settings - a collection of + /// key/value paired settings which apply to quotas and configurations + /// imposed on the cluster. + /// + [JsonProperty(PropertyName = "settings")] + public IDictionary Settings { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ClusterSku.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ClusterSku.cs new file mode 100644 index 000000000000..73d937455d44 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ClusterSku.cs @@ -0,0 +1,84 @@ +// +// 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.EventHub.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Linq; + + /// + /// SKU parameters particular to a cluster instance. + /// + public partial class ClusterSku + { + /// + /// Initializes a new instance of the ClusterSku class. + /// + public ClusterSku() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ClusterSku class. + /// + /// The quantity of Event Hubs Cluster Capacity + /// Units contained in this cluster. + public ClusterSku(int? capacity = default(int?)) + { + Capacity = capacity; + CustomInit(); + } + /// + /// Static constructor for ClusterSku class. + /// + static ClusterSku() + { + Name = "Dedicated"; + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the quantity of Event Hubs Cluster Capacity Units + /// contained in this cluster. + /// + [JsonProperty(PropertyName = "capacity")] + public int? Capacity { get; set; } + + /// + /// Name of this SKU. + /// + [JsonProperty(PropertyName = "name")] + public static string Name { get; private set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Capacity > 32) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "Capacity", 32); + } + if (Capacity < 1) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "Capacity", 1); + } + } + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ConsumerGroup.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ConsumerGroup.cs index 16cc192f5932..adc61f7e47d5 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ConsumerGroup.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ConsumerGroup.cs @@ -32,9 +32,9 @@ public ConsumerGroup() /// /// Initializes a new instance of the ConsumerGroup class. /// - /// Resource Id - /// Resource name - /// Resource type + /// Resource ID. + /// Resource name. + /// Resource type. /// Exact time the message was created. /// The exact time the message was /// updated. diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespace.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespace.cs index f0dabd4aa43d..f380abfc05dd 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespace.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespace.cs @@ -34,18 +34,21 @@ public EHNamespace() /// /// Initializes a new instance of the EHNamespace class. /// - /// Resource Id - /// Resource name - /// Resource type - /// Resource location - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource location. + /// Resource tags. /// Properties of sku resource + /// Properties of BYOK Identity + /// description /// Provisioning state of the /// Namespace. /// The time the Namespace was created. /// The time the Namespace was updated. /// Endpoint you can use to perform /// Service Bus operations. + /// Cluster ARM ID of the Namespace. /// Identifier for Azure Insights /// metrics. /// Value that indicates whether @@ -55,18 +58,27 @@ public EHNamespace() /// throughput units. ( '0' if AutoInflateEnabled = true) /// Value that indicates whether Kafka is /// enabled for eventhub namespace. - public EHNamespace(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), string provisioningState = default(string), System.DateTime? createdAt = default(System.DateTime?), System.DateTime? updatedAt = default(System.DateTime?), string serviceBusEndpoint = default(string), string metricId = default(string), bool? isAutoInflateEnabled = default(bool?), int? maximumThroughputUnits = default(int?), bool? kafkaEnabled = default(bool?)) + /// Enabling this property creates a + /// Standard Event Hubs Namespace in regions supported availability + /// zones. + /// Properties of BYOK Encryption + /// description + public EHNamespace(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), Sku sku = default(Sku), Identity identity = default(Identity), string provisioningState = default(string), System.DateTime? createdAt = default(System.DateTime?), System.DateTime? updatedAt = default(System.DateTime?), string serviceBusEndpoint = default(string), string clusterArmId = default(string), string metricId = default(string), bool? isAutoInflateEnabled = default(bool?), int? maximumThroughputUnits = default(int?), bool? kafkaEnabled = default(bool?), bool? zoneRedundant = default(bool?), Encryption encryption = default(Encryption)) : base(id, name, type, location, tags) { Sku = sku; + Identity = identity; ProvisioningState = provisioningState; CreatedAt = createdAt; UpdatedAt = updatedAt; ServiceBusEndpoint = serviceBusEndpoint; + ClusterArmId = clusterArmId; MetricId = metricId; IsAutoInflateEnabled = isAutoInflateEnabled; MaximumThroughputUnits = maximumThroughputUnits; KafkaEnabled = kafkaEnabled; + ZoneRedundant = zoneRedundant; + Encryption = encryption; CustomInit(); } @@ -81,6 +93,12 @@ public EHNamespace() [JsonProperty(PropertyName = "sku")] public Sku Sku { get; set; } + /// + /// Gets or sets properties of BYOK Identity description + /// + [JsonProperty(PropertyName = "identity")] + public Identity Identity { get; set; } + /// /// Gets provisioning state of the Namespace. /// @@ -105,6 +123,12 @@ public EHNamespace() [JsonProperty(PropertyName = "properties.serviceBusEndpoint")] public string ServiceBusEndpoint { get; private set; } + /// + /// Gets or sets cluster ARM ID of the Namespace. + /// + [JsonProperty(PropertyName = "properties.clusterArmId")] + public string ClusterArmId { get; set; } + /// /// Gets identifier for Azure Insights metrics. /// @@ -133,6 +157,19 @@ public EHNamespace() [JsonProperty(PropertyName = "properties.kafkaEnabled")] public bool? KafkaEnabled { get; set; } + /// + /// Gets or sets enabling this property creates a Standard Event Hubs + /// Namespace in regions supported availability zones. + /// + [JsonProperty(PropertyName = "properties.zoneRedundant")] + public bool? ZoneRedundant { get; set; } + + /// + /// Gets or sets properties of BYOK Encryption description + /// + [JsonProperty(PropertyName = "properties.encryption")] + public Encryption Encryption { get; set; } + /// /// Validate the object. /// diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespaceIdContainer.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespaceIdContainer.cs new file mode 100644 index 000000000000..8f0fd7305caa --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespaceIdContainer.cs @@ -0,0 +1,51 @@ +// +// 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.EventHub.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// The full ARM ID of an Event Hubs Namespace + /// + public partial class EHNamespaceIdContainer + { + /// + /// Initializes a new instance of the EHNamespaceIdContainer class. + /// + public EHNamespaceIdContainer() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EHNamespaceIdContainer class. + /// + /// id parameter + public EHNamespaceIdContainer(string id = default(string)) + { + Id = id; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets id parameter + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespaceIdListResult.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespaceIdListResult.cs new file mode 100644 index 000000000000..6842001ea4b1 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/EHNamespaceIdListResult.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.EventHub.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// The response of the List Namespace IDs operation + /// + public partial class EHNamespaceIdListResult + { + /// + /// Initializes a new instance of the EHNamespaceIdListResult class. + /// + public EHNamespaceIdListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the EHNamespaceIdListResult class. + /// + /// Result of the List Namespace IDs + /// operation + public EHNamespaceIdListResult(IList value = default(IList)) + { + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets result of the List Namespace IDs operation + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Encryption.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Encryption.cs new file mode 100644 index 000000000000..b3e204a5be6c --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Encryption.cs @@ -0,0 +1,64 @@ +// +// 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.EventHub.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// Properties to configure Encryption + /// + public partial class Encryption + { + /// + /// Initializes a new instance of the Encryption class. + /// + public Encryption() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Encryption class. + /// + /// Properties of KeyVault + /// Enumerates the possible value of keySource + /// for Encryption. Possible values include: + /// 'Microsoft.KeyVault' + public Encryption(IList keyVaultProperties = default(IList), KeySource? keySource = default(KeySource?)) + { + KeyVaultProperties = keyVaultProperties; + KeySource = keySource; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets properties of KeyVault + /// + [JsonProperty(PropertyName = "keyVaultProperties")] + public IList KeyVaultProperties { get; set; } + + /// + /// Gets or sets enumerates the possible value of keySource for + /// Encryption. Possible values include: 'Microsoft.KeyVault' + /// + [JsonProperty(PropertyName = "keySource")] + public KeySource? KeySource { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorResponse.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorResponse.cs index 8636e9610b92..fd260a990820 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorResponse.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/ErrorResponse.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.EventHub.Models using System.Linq; /// - /// Error response indicates EventHub service is not able to process the + /// Error response indicates Event Hub service is not able to process the /// incoming request. The reason is provided in the error message. /// public partial class ErrorResponse diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Eventhub.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Eventhub.cs index 0ff85207e13d..59fd62039676 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Eventhub.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Eventhub.cs @@ -34,9 +34,9 @@ public Eventhub() /// /// Initializes a new instance of the Eventhub class. /// - /// Resource Id - /// Resource name - /// Resource type + /// Resource ID. + /// Resource name. + /// Resource type. /// Current number of shards on the Event /// Hub. /// Exact time the Event Hub was diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/IPAction.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/IPAction.cs new file mode 100644 index 000000000000..1cc0ce2ec669 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/IPAction.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.EventHub.Models +{ + + /// + /// Defines values for IPAction. + /// + public static class IPAction + { + public const string Accept = "Accept"; + public const string Reject = "Reject"; + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Identity.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Identity.cs new file mode 100644 index 000000000000..f45632242e93 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Identity.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.EventHub.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Properties to configure Identity for Bring your Own Keys + /// + public partial class Identity + { + /// + /// Initializes a new instance of the Identity class. + /// + public Identity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Identity class. + /// + /// ObjectId from the KeyVault + /// TenantId from the KeyVault + /// Enumerates the possible value Identity type, + /// which currently supports only 'SystemAssigned'. Possible values + /// include: 'SystemAssigned' + public Identity(string principalId = default(string), string tenantId = default(string), IdentityType? type = default(IdentityType?)) + { + PrincipalId = principalId; + TenantId = tenantId; + Type = type; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets objectId from the KeyVault + /// + [JsonProperty(PropertyName = "principalId")] + public string PrincipalId { get; set; } + + /// + /// Gets or sets tenantId from the KeyVault + /// + [JsonProperty(PropertyName = "tenantId")] + public string TenantId { get; set; } + + /// + /// Gets or sets enumerates the possible value Identity type, which + /// currently supports only 'SystemAssigned'. Possible values include: + /// 'SystemAssigned' + /// + [JsonProperty(PropertyName = "type")] + public IdentityType? Type { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/IdentityType.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/IdentityType.cs new file mode 100644 index 000000000000..2db5d2607824 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/IdentityType.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.EventHub.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for IdentityType. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum IdentityType + { + [EnumMember(Value = "SystemAssigned")] + SystemAssigned + } + internal static class IdentityTypeEnumExtension + { + internal static string ToSerializedValue(this IdentityType? value) + { + return value == null ? null : ((IdentityType)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this IdentityType value) + { + switch( value ) + { + case IdentityType.SystemAssigned: + return "SystemAssigned"; + } + return null; + } + + internal static IdentityType? ParseIdentityType(this string value) + { + switch( value ) + { + case "SystemAssigned": + return IdentityType.SystemAssigned; + } + return null; + } + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/IpFilterRule.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/IpFilterRule.cs new file mode 100644 index 000000000000..e2b2d39c8492 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/IpFilterRule.cs @@ -0,0 +1,76 @@ +// +// 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.EventHub.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Single item in a List or Get IpFilterRules operation + /// + [Rest.Serialization.JsonTransformation] + public partial class IpFilterRule : Resource + { + /// + /// Initializes a new instance of the IpFilterRule class. + /// + public IpFilterRule() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the IpFilterRule class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// IP Mask + /// The IP Filter Action. Possible values include: + /// 'Accept', 'Reject' + /// IP Filter name + public IpFilterRule(string id = default(string), string name = default(string), string type = default(string), string ipMask = default(string), string action = default(string), string filterName = default(string)) + : base(id, name, type) + { + IpMask = ipMask; + Action = action; + FilterName = filterName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets IP Mask + /// + [JsonProperty(PropertyName = "properties.ipMask")] + public string IpMask { get; set; } + + /// + /// Gets or sets the IP Filter Action. Possible values include: + /// 'Accept', 'Reject' + /// + [JsonProperty(PropertyName = "properties.action")] + public string Action { get; set; } + + /// + /// Gets or sets IP Filter name + /// + [JsonProperty(PropertyName = "properties.filterName")] + public string FilterName { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeySource.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeySource.cs new file mode 100644 index 000000000000..9311eb809ba0 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeySource.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.EventHub.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime; + using System.Runtime.Serialization; + + /// + /// Defines values for KeySource. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum KeySource + { + [EnumMember(Value = "Microsoft.KeyVault")] + MicrosoftKeyVault + } + internal static class KeySourceEnumExtension + { + internal static string ToSerializedValue(this KeySource? value) + { + return value == null ? null : ((KeySource)value).ToSerializedValue(); + } + + internal static string ToSerializedValue(this KeySource value) + { + switch( value ) + { + case KeySource.MicrosoftKeyVault: + return "Microsoft.KeyVault"; + } + return null; + } + + internal static KeySource? ParseKeySource(this string value) + { + switch( value ) + { + case "Microsoft.KeyVault": + return KeySource.MicrosoftKeyVault; + } + return null; + } + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeyVaultProperties.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeyVaultProperties.cs new file mode 100644 index 000000000000..afdb8746970c --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/KeyVaultProperties.cs @@ -0,0 +1,67 @@ +// +// 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.EventHub.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Properties to configure keyVault Properties + /// + public partial class KeyVaultProperties + { + /// + /// Initializes a new instance of the KeyVaultProperties class. + /// + public KeyVaultProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the KeyVaultProperties class. + /// + /// Name of the Key from KeyVault + /// Uri of KeyVault + /// Key Version + public KeyVaultProperties(string keyName = default(string), string keyVaultUri = default(string), string keyVersion = default(string)) + { + KeyName = keyName; + KeyVaultUri = keyVaultUri; + KeyVersion = keyVersion; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets name of the Key from KeyVault + /// + [JsonProperty(PropertyName = "keyName")] + public string KeyName { get; set; } + + /// + /// Gets or sets uri of KeyVault + /// + [JsonProperty(PropertyName = "keyVaultUri")] + public string KeyVaultUri { get; set; } + + /// + /// Gets or sets key Version + /// + [JsonProperty(PropertyName = "keyVersion")] + public string KeyVersion { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingPlan.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingPlan.cs deleted file mode 100644 index d79644cc842c..000000000000 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingPlan.cs +++ /dev/null @@ -1,87 +0,0 @@ -// -// 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.EventHub.Models -{ - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Newtonsoft.Json; - using System.Collections; - using System.Collections.Generic; - using System.Linq; - - /// - /// Messaging Plan for the namespace - /// - [Rest.Serialization.JsonTransformation] - public partial class MessagingPlan : TrackedResource - { - /// - /// Initializes a new instance of the MessagingPlan class. - /// - public MessagingPlan() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the MessagingPlan class. - /// - /// Resource Id - /// Resource name - /// Resource type - /// Resource location - /// Resource tags - /// Sku type - /// Selected event hub unit - /// The exact time the messaging plan was - /// updated. - /// revision number - public MessagingPlan(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), int? sku = default(int?), int? selectedEventHubUnit = default(int?), System.DateTime? updatedAt = default(System.DateTime?), long? revision = default(long?)) - : base(id, name, type, location, tags) - { - Sku = sku; - SelectedEventHubUnit = selectedEventHubUnit; - UpdatedAt = updatedAt; - Revision = revision; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets sku type - /// - [JsonProperty(PropertyName = "properties.sku")] - public int? Sku { get; private set; } - - /// - /// Gets selected event hub unit - /// - [JsonProperty(PropertyName = "properties.selectedEventHubUnit")] - public int? SelectedEventHubUnit { get; private set; } - - /// - /// Gets the exact time the messaging plan was updated. - /// - [JsonProperty(PropertyName = "properties.updatedAt")] - public System.DateTime? UpdatedAt { get; private set; } - - /// - /// Gets revision number - /// - [JsonProperty(PropertyName = "properties.revision")] - public long? Revision { get; private set; } - - } -} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingRegions.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingRegions.cs index 80033c302ee1..ed48df173c53 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingRegions.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingRegions.cs @@ -31,11 +31,12 @@ public MessagingRegions() /// /// Initializes a new instance of the MessagingRegions class. /// - /// Resource Id - /// Resource name - /// Resource type - /// Resource location - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource location. + /// Resource tags. + /// Properties of Messaging Region public MessagingRegions(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), MessagingRegionsProperties properties = default(MessagingRegionsProperties)) : base(id, name, type, location, tags) { @@ -49,6 +50,7 @@ public MessagingRegions() partial void CustomInit(); /// + /// Gets or sets properties of Messaging Region /// [JsonProperty(PropertyName = "properties")] public MessagingRegionsProperties Properties { get; set; } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingRegionsProperties.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingRegionsProperties.cs index d12fec022bae..d23d7797896b 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingRegionsProperties.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/MessagingRegionsProperties.cs @@ -13,6 +13,9 @@ namespace Microsoft.Azure.Management.EventHub.Models using Newtonsoft.Json; using System.Linq; + /// + /// Properties of Messaging Region + /// public partial class MessagingRegionsProperties { /// diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NWRuleSetIpRules.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NWRuleSetIpRules.cs index d53460f76fa2..437b2ce6e01f 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NWRuleSetIpRules.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NWRuleSetIpRules.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.EventHub.Models using System.Linq; /// - /// Description of NetWorkRuleSet - IpRules resource. + /// The response from the List namespace operation. /// public partial class NWRuleSetIpRules { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NWRuleSetVirtualNetworkRules.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NWRuleSetVirtualNetworkRules.cs index 58fe3980e5e4..a45f02be7d12 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NWRuleSetVirtualNetworkRules.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NWRuleSetVirtualNetworkRules.cs @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Management.EventHub.Models using System.Linq; /// - /// Description of VirtualNetworkRules - NetworkRules resource. + /// The response from the List namespace operation. /// public partial class NWRuleSetVirtualNetworkRules { @@ -33,7 +33,7 @@ public NWRuleSetVirtualNetworkRules() /// /// Subnet properties /// Value that indicates - /// whether to ignore missing VNet Service Endpoint + /// whether to ignore missing Vnet Service Endpoint public NWRuleSetVirtualNetworkRules(Subnet subnet = default(Subnet), bool? ignoreMissingVnetServiceEndpoint = default(bool?)) { Subnet = subnet; @@ -53,24 +53,11 @@ public NWRuleSetVirtualNetworkRules() public Subnet Subnet { get; set; } /// - /// Gets or sets value that indicates whether to ignore missing VNet + /// Gets or sets value that indicates whether to ignore missing Vnet /// Service Endpoint /// [JsonProperty(PropertyName = "ignoreMissingVnetServiceEndpoint")] public bool? IgnoreMissingVnetServiceEndpoint { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Subnet != null) - { - Subnet.Validate(); - } - } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NetworkRuleSet.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NetworkRuleSet.cs index 3cef3c6fb1b8..593120b84575 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NetworkRuleSet.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/NetworkRuleSet.cs @@ -18,7 +18,7 @@ namespace Microsoft.Azure.Management.EventHub.Models using System.Linq; /// - /// Description of NetworkRuleSet resource. + /// Description of topic resource. /// [Rest.Serialization.JsonTransformation] public partial class NetworkRuleSet : Resource @@ -34,9 +34,9 @@ public NetworkRuleSet() /// /// Initializes a new instance of the NetworkRuleSet class. /// - /// Resource Id - /// Resource name - /// Resource type + /// Resource ID. + /// Resource name. + /// Resource type. /// Default Action for Network Rule Set. /// Possible values include: 'Allow', 'Deny' /// List VirtualNetwork Rules diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Resource.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Resource.cs index 099886a63583..59cc585e0f35 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Resource.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Resource.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.EventHub.Models using System.Linq; /// - /// The Resource definition + /// The resource definition. /// public partial class Resource : IResource { @@ -31,9 +31,9 @@ public Resource() /// /// Initializes a new instance of the Resource class. /// - /// Resource Id - /// Resource name - /// Resource type + /// Resource ID. + /// Resource name. + /// Resource type. public Resource(string id = default(string), string name = default(string), string type = default(string)) { Id = id; @@ -48,19 +48,19 @@ public Resource() partial void CustomInit(); /// - /// Gets resource Id + /// Gets resource ID. /// [JsonProperty(PropertyName = "id")] public string Id { get; private set; } /// - /// Gets resource name + /// Gets resource name. /// [JsonProperty(PropertyName = "name")] public string Name { get; private set; } /// - /// Gets resource type + /// Gets resource type. /// [JsonProperty(PropertyName = "type")] public string Type { get; private set; } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Subnet.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Subnet.cs index b81825a735ed..45da1a9e70be 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Subnet.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/Subnet.cs @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.EventHub.Models { - using Microsoft.Rest; using Newtonsoft.Json; using System.Linq; @@ -31,7 +30,7 @@ public Subnet() /// Initializes a new instance of the Subnet class. /// /// Resource ID of Virtual Network Subnet - public Subnet(string id) + public Subnet(string id = default(string)) { Id = id; CustomInit(); @@ -48,18 +47,5 @@ public Subnet(string id) [JsonProperty(PropertyName = "id")] public string Id { get; set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Id == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Id"); - } - } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/TrackedResource.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/TrackedResource.cs index c1c8f63af5df..0f2de89f8c94 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/TrackedResource.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/TrackedResource.cs @@ -16,7 +16,7 @@ namespace Microsoft.Azure.Management.EventHub.Models using System.Linq; /// - /// Definition of Resource + /// Definition of resource. /// public partial class TrackedResource : Resource { @@ -31,11 +31,11 @@ public TrackedResource() /// /// Initializes a new instance of the TrackedResource class. /// - /// Resource Id - /// Resource name - /// Resource type - /// Resource location - /// Resource tags + /// Resource ID. + /// Resource name. + /// Resource type. + /// Resource location. + /// Resource tags. public TrackedResource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) : base(id, name, type) { @@ -50,13 +50,13 @@ public TrackedResource() partial void CustomInit(); /// - /// Gets or sets resource location + /// Gets or sets resource location. /// [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// - /// Gets or sets resource tags + /// Gets or sets resource tags. /// [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/VirtualNetworkRule.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/VirtualNetworkRule.cs new file mode 100644 index 000000000000..05853e22a2e7 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Models/VirtualNetworkRule.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.EventHub.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Single item in a List or Get VirtualNetworkRules operation + /// + [Rest.Serialization.JsonTransformation] + public partial class VirtualNetworkRule : Resource + { + /// + /// Initializes a new instance of the VirtualNetworkRule class. + /// + public VirtualNetworkRule() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the VirtualNetworkRule class. + /// + /// Resource ID. + /// Resource name. + /// Resource type. + /// ARM ID of Virtual Network + /// Subnet + public VirtualNetworkRule(string id = default(string), string name = default(string), string type = default(string), string virtualNetworkSubnetId = default(string)) + : base(id, name, type) + { + VirtualNetworkSubnetId = virtualNetworkSubnetId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets ARM ID of Virtual Network Subnet + /// + [JsonProperty(PropertyName = "properties.virtualNetworkSubnetId")] + public string VirtualNetworkSubnetId { get; set; } + + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperations.cs index c62283f38142..acf6a58fd85f 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperations.cs @@ -51,10 +51,13 @@ internal NamespacesOperations(EventHubManagementClient client) public EventHubManagementClient Client { get; private set; } /// - /// Check the give Namespace name availability. + /// Gets a list of IP Filter rules for a Namespace. /// - /// - /// Parameters to check availability of the given Namespace name + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name /// /// /// Headers that will be added to request. @@ -77,24 +80,275 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CheckNameAvailabilityWithHttpMessagesAsync(CheckNameAvailabilityParameter parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListIPFilterRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.ApiVersion == null) + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListIPFilterRules", 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.EventHub/namespaces/{namespaceName}/ipfilterrules").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Creates or updates an IpFilterRule for a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// + /// + /// The Namespace IpFilterRule. + /// + /// + /// 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> CreateOrUpdateIpFilterRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string ipFilterRuleName, IpFilterRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (ipFilterRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ipFilterRuleName"); + } + if (ipFilterRuleName != null) + { + if (ipFilterRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "ipFilterRuleName", 1); + } + } if (parameters == null) { throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (parameters != null) + if (Client.SubscriptionId == null) { - parameters.Validate(); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2018-01-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -102,18 +356,1560 @@ internal NamespacesOperations(EventHubManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("ipFilterRuleName", ipFilterRuleName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateIpFilterRule", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.EventHub/CheckNameAvailability").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/ipfilterrules/{ipFilterRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{ipFilterRuleName}", System.Uri.EscapeDataString(ipFilterRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Deletes an IpFilterRule for a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// + /// + /// 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 DeleteIpFilterRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string ipFilterRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (ipFilterRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ipFilterRuleName"); + } + if (ipFilterRuleName != null) + { + if (ipFilterRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "ipFilterRuleName", 1); + } + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("ipFilterRuleName", ipFilterRuleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteIpFilterRule", 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.EventHub/namespaces/{namespaceName}/ipfilterrules/{ipFilterRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{ipFilterRuleName}", System.Uri.EscapeDataString(ipFilterRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 != 204) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Gets an IpFilterRule for a Namespace by rule name. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// + /// + /// 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> GetIpFilterRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string ipFilterRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (ipFilterRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ipFilterRuleName"); + } + if (ipFilterRuleName != null) + { + if (ipFilterRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "ipFilterRuleName", 1); + } + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("ipFilterRuleName", ipFilterRuleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetIpFilterRule", 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.EventHub/namespaces/{namespaceName}/ipfilterrules/{ipFilterRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{ipFilterRuleName}", System.Uri.EscapeDataString(ipFilterRuleName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists all the available Namespaces within a subscription, irrespective of + /// the resource groups. + /// + /// + /// 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.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + 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("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.EventHub/namespaces").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Lists the available Namespaces within a resource group. + /// + /// + /// Name of the resource group within the azure 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>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("apiVersion", apiVersion); + 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.EventHub/namespaces").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Creates or updates a namespace. Once created, this namespace's resource + /// manifest is immutable. This operation is idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// Parameters for creating a namespace resource. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, EHNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send Request + AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes an existing namespace. This operation also removes all associated + /// resources under the namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Gets the description of the specified namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// 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 namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("apiVersion", apiVersion); + 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.EventHub/namespaces/{namespaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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 && (int)_statusCode != 201) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Creates or updates a namespace. Once created, this namespace's resource + /// manifest is immutable. This operation is idempotent. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// Parameters for updating a namespace 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> UpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, EHNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); + 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.EventHub/namespaces/{namespaceName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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 && (int)_statusCode != 202) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Gets a list of VirtualNetwork rules for a Namespace. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// 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>> ListVirtualNetworkRulesWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + string apiVersion = "2018-01-01-preview"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListVirtualNetworkRules", 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.EventHub/namespaces/{namespaceName}/virtualnetworkrules").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -122,7 +1918,7 @@ internal NamespacesOperations(EventHubManagementClient 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) @@ -153,12 +1949,6 @@ internal NamespacesOperations(EventHubManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -209,7 +1999,7 @@ internal NamespacesOperations(EventHubManagementClient 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")) @@ -222,7 +2012,7 @@ internal NamespacesOperations(EventHubManagementClient 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) { @@ -242,9 +2032,20 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Lists all the available Namespaces within a subscription, irrespective of - /// the resource groups. + /// Creates or updates an VirtualNetworkRule for a Namespace. /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + /// + /// The Namespace VirtualNetworkRule. + /// /// /// Headers that will be added to request. /// @@ -266,16 +2067,58 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateVirtualNetworkRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string virtualNetworkRuleName, VirtualNetworkRule parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.ApiVersion == null) + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (resourceGroupName != null) + { + if (resourceGroupName.Length > 90) + { + throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); + } + if (resourceGroupName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); + } + } + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (virtualNetworkRuleName == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "virtualNetworkRuleName"); + } + if (virtualNetworkRuleName != null) + { + if (virtualNetworkRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "virtualNetworkRuleName", 1); + } } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + string apiVersion = "2018-01-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -283,17 +2126,25 @@ internal NamespacesOperations(EventHubManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("virtualNetworkRuleName", virtualNetworkRuleName); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateVirtualNetworkRule", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri.AbsoluteUri; - var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.EventHub/namespaces").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/virtualnetworkrules/{virtualNetworkRuleName}").ToString(); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{virtualNetworkRuleName}", System.Uri.EscapeDataString(virtualNetworkRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -302,7 +2153,7 @@ internal NamespacesOperations(EventHubManagementClient 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) @@ -333,6 +2184,12 @@ internal NamespacesOperations(EventHubManagementClient client) // Serialize Request string _requestContent = null; + if(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -383,7 +2240,7 @@ internal NamespacesOperations(EventHubManagementClient 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")) @@ -396,7 +2253,7 @@ internal NamespacesOperations(EventHubManagementClient 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) { @@ -416,11 +2273,17 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Lists the available Namespaces within a resource group. + /// Deletes an VirtualNetworkRule for a Namespace. /// /// /// Name of the resource group within the azure subscription. /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// /// /// Headers that will be added to request. /// @@ -430,9 +2293,6 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -442,7 +2302,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupWithHttpMessagesAsync(string resourceGroupName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task DeleteVirtualNetworkRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string virtualNetworkRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -459,14 +2319,37 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); } } - if (Client.ApiVersion == null) + if (namespaceName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); + } + if (namespaceName != null) + { + if (namespaceName.Length > 50) + { + throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); + } + if (namespaceName.Length < 6) + { + throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); + } + } + if (virtualNetworkRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "virtualNetworkRuleName"); + } + if (virtualNetworkRuleName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + if (virtualNetworkRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "virtualNetworkRuleName", 1); + } } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2018-01-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -475,18 +2358,23 @@ internal NamespacesOperations(EventHubManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("virtualNetworkRuleName", virtualNetworkRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteVirtualNetworkRule", 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.EventHub/namespaces").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/virtualnetworkrules/{virtualNetworkRuleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{virtualNetworkRuleName}", System.Uri.EscapeDataString(virtualNetworkRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -495,7 +2383,7 @@ internal NamespacesOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -546,7 +2434,7 @@ internal NamespacesOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -576,31 +2464,13 @@ internal NamespacesOperations(EventHubManagementClient 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 == 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); @@ -609,34 +2479,7 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Creates or updates a namespace. Once created, this namespace's resource - /// manifest is immutable. This operation is idempotent. - /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name - /// - /// - /// Parameters for creating a namespace resource. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, EHNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send Request - AzureOperationResponse _response = await BeginCreateOrUpdateWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPutOrPatchOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Deletes an existing namespace. This operation also removes all associated - /// resources under the namespace. + /// Gets an VirtualNetworkRule for a Namespace by rule name. /// /// /// Name of the resource group within the azure subscription. @@ -644,27 +2487,8 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// The Namespace name /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - public async Task DeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) - { - // Send request - AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, customHeaders, cancellationToken).ConfigureAwait(false); - return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); - } - - /// - /// Gets the description of the specified namespace. - /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name + /// + /// The Virtual Network Rule name. /// /// /// Headers that will be added to request. @@ -687,7 +2511,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetVirtualNetworkRuleWithHttpMessagesAsync(string resourceGroupName, string namespaceName, string virtualNetworkRuleName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -719,14 +2543,22 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (Client.ApiVersion == null) + if (virtualNetworkRuleName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "virtualNetworkRuleName"); + } + if (virtualNetworkRuleName != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + if (virtualNetworkRuleName.Length < 1) + { + throw new ValidationException(ValidationRules.MinLength, "virtualNetworkRuleName", 1); + } } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2018-01-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -736,19 +2568,22 @@ internal NamespacesOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("virtualNetworkRuleName", virtualNetworkRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetVirtualNetworkRule", 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.EventHub/namespaces/{namespaceName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/virtualnetworkrules/{virtualNetworkRuleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); + _url = _url.Replace("{virtualNetworkRuleName}", System.Uri.EscapeDataString(virtualNetworkRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -808,7 +2643,7 @@ internal NamespacesOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -838,7 +2673,7 @@ internal NamespacesOperations(EventHubManagementClient 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")) @@ -851,25 +2686,7 @@ internal NamespacesOperations(EventHubManagementClient client) _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); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -889,8 +2706,7 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Creates or updates a namespace. Once created, this namespace's resource - /// manifest is immutable. This operation is idempotent. + /// Create or update NetworkRuleSet for a Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -899,7 +2715,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// The Namespace name /// /// - /// Parameters for updating a namespace resource. + /// The Namespace IpFilterRule. /// /// /// Headers that will be added to request. @@ -922,7 +2738,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, EHNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> CreateOrUpdateNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, NetworkRuleSet parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -954,18 +2770,15 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + string apiVersion = "2018-01-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -975,20 +2788,21 @@ internal NamespacesOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateNetworkRuleSet", 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.EventHub/namespaces/{namespaceName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/networkRuleSets/default").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -997,7 +2811,7 @@ internal NamespacesOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PATCH"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -1054,7 +2868,7 @@ internal NamespacesOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1084,7 +2898,7 @@ internal NamespacesOperations(EventHubManagementClient 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")) @@ -1092,30 +2906,12 @@ internal NamespacesOperations(EventHubManagementClient client) _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) + 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) { @@ -1135,7 +2931,7 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Gets messaging plan for specified namespace. + /// Gets NetworkRuleSet for a Namespace. /// /// /// Name of the resource group within the azure subscription. @@ -1164,7 +2960,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetMessagingPlanWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -1196,14 +2992,11 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2018-01-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1213,19 +3006,20 @@ internal NamespacesOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetMessagingPlan", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetNetworkRuleSet", 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.EventHub/namespaces/{namespaceName}/messagingplan").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/networkRuleSets/default").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1315,7 +3109,7 @@ internal NamespacesOperations(EventHubManagementClient 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")) @@ -1328,7 +3122,7 @@ internal NamespacesOperations(EventHubManagementClient 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) { @@ -1409,14 +3203,11 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1426,19 +3217,20 @@ internal NamespacesOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListAuthorizationRules", 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.EventHub/namespaces/{namespaceName}/AuthorizationRules").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/authorizationRules").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1647,14 +3439,11 @@ internal NamespacesOperations(EventHubManagementClient client) { parameters.Validate(); } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1666,20 +3455,21 @@ internal NamespacesOperations(EventHubManagementClient client) tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("authorizationRuleName", authorizationRuleName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateAuthorizationRule", 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.EventHub/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/authorizationRules/{authorizationRuleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -1880,14 +3670,11 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1898,20 +3685,21 @@ internal NamespacesOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "DeleteAuthorizationRule", 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.EventHub/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/authorizationRules/{authorizationRuleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -2091,14 +3879,11 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2109,20 +3894,21 @@ internal NamespacesOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GetAuthorizationRule", 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.EventHub/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/authorizationRules/{authorizationRuleName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -2320,14 +4106,11 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "authorizationRuleName", 1); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2338,20 +4121,21 @@ internal NamespacesOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("authorizationRuleName", authorizationRuleName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListKeys", 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.EventHub/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}/listKeys").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/authorizationRules/{authorizationRuleName}/listKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -2561,14 +4345,11 @@ internal NamespacesOperations(EventHubManagementClient client) { parameters.Validate(); } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2580,20 +4361,21 @@ internal NamespacesOperations(EventHubManagementClient client) tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("authorizationRuleName", authorizationRuleName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "RegenerateKeys", 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.EventHub/namespaces/{namespaceName}/AuthorizationRules/{authorizationRuleName}/regenerateKeys").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}/authorizationRules/{authorizationRuleName}/regenerateKeys").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{authorizationRuleName}", System.Uri.EscapeDataString(authorizationRuleName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -2722,7 +4504,197 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Create or update NetworkRuleSet for a Namespace. + /// Check the give Namespace name availability. + /// + /// + /// Parameters to check availability of the given Namespace name + /// + /// + /// 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> CheckNameAvailabilityWithHttpMessagesAsync(CheckNameAvailabilityParameter parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } + if (parameters != null) + { + parameters.Validate(); + } + string apiVersion = "2017-04-01"; + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); + tracingParameters.Add("parameters", parameters); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "CheckNameAvailability", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.EventHub/checkNameAvailability").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + List _queryParameters = new List(); + if (apiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(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(parameters != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + + /// + /// Creates or updates a namespace. Once created, this namespace's resource + /// manifest is immutable. This operation is idempotent. /// /// /// Name of the resource group within the azure subscription. @@ -2731,7 +4703,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// The Namespace name /// /// - /// The Namespace IpFilterRule. + /// Parameters for creating a namespace resource. /// /// /// Headers that will be added to request. @@ -2754,7 +4726,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> CreateOrUpdateNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, NetworkRuleSet parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, EHNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -2786,18 +4758,19 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (Client.ApiVersion == null) + if (parameters == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } - if (Client.SubscriptionId == null) + if (parameters != null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + parameters.Validate(); } - if (parameters == null) + if (Client.SubscriptionId == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2018-01-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2808,19 +4781,20 @@ internal NamespacesOperations(EventHubManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); tracingParameters.Add("parameters", parameters); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdateNetworkRuleSet", 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/Microsoft.EventHub/namespaces/{namespaceName}/networkRuleSets/default").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -2886,7 +4860,7 @@ internal NamespacesOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2913,23 +4887,41 @@ internal NamespacesOperations(EventHubManagementClient client) { _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(); + 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 == 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) { @@ -2949,7 +4941,8 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Gets NetworkRuleSet for a Namespace. + /// Deletes an existing namespace. This operation also removes all associated + /// resources under the namespace. /// /// /// Name of the resource group within the azure subscription. @@ -2966,9 +4959,6 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// - /// - /// Thrown when unable to deserialize the response - /// /// /// Thrown when a required parameter is null /// @@ -2978,7 +4968,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetNetworkRuleSetWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (resourceGroupName == null) { @@ -3010,14 +5000,11 @@ internal NamespacesOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); } } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } + string apiVersion = "2018-01-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3027,19 +5014,20 @@ internal NamespacesOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetNetworkRuleSet", tracingParameters); + 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.EventHub/namespaces/{namespaceName}/networkRuleSets/default").ToString(); + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/namespaces/{namespaceName}").ToString(); _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { @@ -3048,7 +5036,7 @@ internal NamespacesOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3099,7 +5087,7 @@ internal NamespacesOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3129,31 +5117,13 @@ internal NamespacesOperations(EventHubManagementClient 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 == 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); @@ -3162,17 +5132,10 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Creates or updates a namespace. Once created, this namespace's resource - /// manifest is immutable. This operation is idempotent. + /// Gets a list of IP Filter rules for a Namespace. /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name - /// - /// - /// Parameters for creating a namespace resource. + /// + /// The NextLink from the previous successful call to List operation. /// /// /// Headers that will be added to request. @@ -3195,53 +5158,11 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> BeginCreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string namespaceName, EHNamespace parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListIPFilterRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - } - if (namespaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); - } - if (namespaceName != null) - { - if (namespaceName.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); - } - if (namespaceName.Length < 6) - { - throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); - } - } - if (parameters == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); - } - if (parameters != null) - { - parameters.Validate(); - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -3250,23 +5171,14 @@ internal NamespacesOperations(EventHubManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("namespaceName", namespaceName); - tracingParameters.Add("parameters", parameters); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginCreateOrUpdate", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListIPFilterRulesNext", 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.EventHub/namespaces/{namespaceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); 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); @@ -3274,7 +5186,7 @@ internal NamespacesOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3305,12 +5217,6 @@ internal NamespacesOperations(EventHubManagementClient client) // Serialize Request string _requestContent = null; - if(parameters != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(parameters, 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) { @@ -3331,7 +5237,7 @@ internal NamespacesOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 201 && (int)_statusCode != 202) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3361,7 +5267,7 @@ internal NamespacesOperations(EventHubManagementClient 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")) @@ -3374,25 +5280,7 @@ internal NamespacesOperations(EventHubManagementClient client) _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); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -3412,14 +5300,11 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Deletes an existing namespace. This operation also removes all associated - /// resources under the namespace. + /// Lists all the available Namespaces within a subscription, irrespective of + /// the resource groups. /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name + /// + /// The NextLink from the previous successful call to List operation. /// /// /// Headers that will be added to request. @@ -3430,6 +5315,9 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// Thrown when the operation returned an invalid status code /// + /// + /// Thrown when unable to deserialize the response + /// /// /// Thrown when a required parameter is null /// @@ -3439,45 +5327,11 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string namespaceName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (resourceGroupName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); - } - if (resourceGroupName != null) - { - if (resourceGroupName.Length > 90) - { - throw new ValidationException(ValidationRules.MaxLength, "resourceGroupName", 90); - } - if (resourceGroupName.Length < 1) - { - throw new ValidationException(ValidationRules.MinLength, "resourceGroupName", 1); - } - } - if (namespaceName == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "namespaceName"); - } - if (namespaceName != null) - { - if (namespaceName.Length > 50) - { - throw new ValidationException(ValidationRules.MaxLength, "namespaceName", 50); - } - if (namespaceName.Length < 6) - { - throw new ValidationException(ValidationRules.MinLength, "namespaceName", 6); - } - } - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } - if (Client.SubscriptionId == null) + if (nextPageLink == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -3486,22 +5340,14 @@ internal NamespacesOperations(EventHubManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("namespaceName", namespaceName); + tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "BeginDelete", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListNext", 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.EventHub/namespaces/{namespaceName}").ToString(); - _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); - _url = _url.Replace("{namespaceName}", System.Uri.EscapeDataString(namespaceName)); - _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); 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); @@ -3509,7 +5355,7 @@ internal NamespacesOperations(EventHubManagementClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) @@ -3560,7 +5406,7 @@ internal NamespacesOperations(EventHubManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200 && (int)_statusCode != 202 && (int)_statusCode != 204) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -3590,13 +5436,31 @@ internal NamespacesOperations(EventHubManagementClient 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 == 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); @@ -3605,8 +5469,7 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Lists all the available Namespaces within a subscription, irrespective of - /// the resource groups. + /// Lists the available Namespaces within a resource group. /// /// /// The NextLink from the previous successful call to List operation. @@ -3632,7 +5495,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -3647,7 +5510,7 @@ internal NamespacesOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -3774,7 +5637,7 @@ internal NamespacesOperations(EventHubManagementClient client) } /// - /// Lists the available Namespaces within a resource group. + /// Gets a list of VirtualNetwork rules for a Namespace. /// /// /// The NextLink from the previous successful call to List operation. @@ -3800,7 +5663,7 @@ internal NamespacesOperations(EventHubManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListByResourceGroupNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListVirtualNetworkRulesNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -3815,7 +5678,7 @@ internal NamespacesOperations(EventHubManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroupNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListVirtualNetworkRulesNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; @@ -3909,7 +5772,7 @@ internal NamespacesOperations(EventHubManagementClient 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")) @@ -3922,7 +5785,7 @@ internal NamespacesOperations(EventHubManagementClient 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) { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperationsExtensions.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperationsExtensions.cs index 26e4b04409d5..a118d4f9c1fc 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperationsExtensions.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/NamespacesOperationsExtensions.cs @@ -22,34 +22,181 @@ namespace Microsoft.Azure.Management.EventHub public static partial class NamespacesOperationsExtensions { /// - /// Check the give Namespace name availability. + /// Gets a list of IP Filter rules for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + public static IPage ListIPFilterRules(this INamespacesOperations operations, string resourceGroupName, string namespaceName) + { + return operations.ListIPFilterRulesAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of IP Filter rules for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The cancellation token. + /// + public static async Task> ListIPFilterRulesAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListIPFilterRulesWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates an IpFilterRule for a Namespace. /// /// /// The operations group for this extension method. /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// /// - /// Parameters to check availability of the given Namespace name + /// The Namespace IpFilterRule. /// - public static CheckNameAvailabilityResult CheckNameAvailability(this INamespacesOperations operations, CheckNameAvailabilityParameter parameters) + public static IpFilterRule CreateOrUpdateIpFilterRule(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string ipFilterRuleName, IpFilterRule parameters) { - return operations.CheckNameAvailabilityAsync(parameters).GetAwaiter().GetResult(); + return operations.CreateOrUpdateIpFilterRuleAsync(resourceGroupName, namespaceName, ipFilterRuleName, parameters).GetAwaiter().GetResult(); } /// - /// Check the give Namespace name availability. + /// Creates or updates an IpFilterRule for a Namespace. /// /// /// The operations group for this extension method. /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// /// - /// Parameters to check availability of the given Namespace name + /// The Namespace IpFilterRule. /// /// /// The cancellation token. /// - public static async Task CheckNameAvailabilityAsync(this INamespacesOperations operations, CheckNameAvailabilityParameter parameters, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateIpFilterRuleAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string ipFilterRuleName, IpFilterRule parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.CheckNameAvailabilityWithHttpMessagesAsync(parameters, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CreateOrUpdateIpFilterRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, ipFilterRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes an IpFilterRule for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// + public static void DeleteIpFilterRule(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string ipFilterRuleName) + { + operations.DeleteIpFilterRuleAsync(resourceGroupName, namespaceName, ipFilterRuleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes an IpFilterRule for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteIpFilterRuleAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string ipFilterRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteIpFilterRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, ipFilterRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets an IpFilterRule for a Namespace by rule name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// + public static IpFilterRule GetIpFilterRule(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string ipFilterRuleName) + { + return operations.GetIpFilterRuleAsync(resourceGroupName, namespaceName, ipFilterRuleName).GetAwaiter().GetResult(); + } + + /// + /// Gets an IpFilterRule for a Namespace by rule name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The IP Filter Rule name. + /// + /// + /// The cancellation token. + /// + public static async Task GetIpFilterRuleAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string ipFilterRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetIpFilterRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, ipFilterRuleName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -295,7 +442,234 @@ public static EHNamespace Update(this INamespacesOperations operations, string r } /// - /// Gets messaging plan for specified namespace. + /// Gets a list of VirtualNetwork rules for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + public static IPage ListVirtualNetworkRules(this INamespacesOperations operations, string resourceGroupName, string namespaceName) + { + return operations.ListVirtualNetworkRulesAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of VirtualNetwork rules for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The cancellation token. + /// + public static async Task> ListVirtualNetworkRulesAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListVirtualNetworkRulesWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Creates or updates an VirtualNetworkRule for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + /// + /// The Namespace VirtualNetworkRule. + /// + public static VirtualNetworkRule CreateOrUpdateVirtualNetworkRule(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string virtualNetworkRuleName, VirtualNetworkRule parameters) + { + return operations.CreateOrUpdateVirtualNetworkRuleAsync(resourceGroupName, namespaceName, virtualNetworkRuleName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Creates or updates an VirtualNetworkRule for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + /// + /// The Namespace VirtualNetworkRule. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateVirtualNetworkRuleAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string virtualNetworkRuleName, VirtualNetworkRule parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateVirtualNetworkRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, virtualNetworkRuleName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes an VirtualNetworkRule for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + public static void DeleteVirtualNetworkRule(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string virtualNetworkRuleName) + { + operations.DeleteVirtualNetworkRuleAsync(resourceGroupName, namespaceName, virtualNetworkRuleName).GetAwaiter().GetResult(); + } + + /// + /// Deletes an VirtualNetworkRule for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteVirtualNetworkRuleAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string virtualNetworkRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.DeleteVirtualNetworkRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, virtualNetworkRuleName, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + + /// + /// Gets an VirtualNetworkRule for a Namespace by rule name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + public static VirtualNetworkRule GetVirtualNetworkRule(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string virtualNetworkRuleName) + { + return operations.GetVirtualNetworkRuleAsync(resourceGroupName, namespaceName, virtualNetworkRuleName).GetAwaiter().GetResult(); + } + + /// + /// Gets an VirtualNetworkRule for a Namespace by rule name. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Virtual Network Rule name. + /// + /// + /// The cancellation token. + /// + public static async Task GetVirtualNetworkRuleAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, string virtualNetworkRuleName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetVirtualNetworkRuleWithHttpMessagesAsync(resourceGroupName, namespaceName, virtualNetworkRuleName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Create or update NetworkRuleSet for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Namespace IpFilterRule. + /// + public static NetworkRuleSet CreateOrUpdateNetworkRuleSet(this INamespacesOperations operations, string resourceGroupName, string namespaceName, NetworkRuleSet parameters) + { + return operations.CreateOrUpdateNetworkRuleSetAsync(resourceGroupName, namespaceName, parameters).GetAwaiter().GetResult(); + } + + /// + /// Create or update NetworkRuleSet for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group within the azure subscription. + /// + /// + /// The Namespace name + /// + /// + /// The Namespace IpFilterRule. + /// + /// + /// The cancellation token. + /// + public static async Task CreateOrUpdateNetworkRuleSetAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, NetworkRuleSet parameters, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.CreateOrUpdateNetworkRuleSetWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets NetworkRuleSet for a Namespace. /// /// /// The operations group for this extension method. @@ -306,13 +680,13 @@ public static EHNamespace Update(this INamespacesOperations operations, string r /// /// The Namespace name /// - public static MessagingPlan GetMessagingPlan(this INamespacesOperations operations, string resourceGroupName, string namespaceName) + public static NetworkRuleSet GetNetworkRuleSet(this INamespacesOperations operations, string resourceGroupName, string namespaceName) { - return operations.GetMessagingPlanAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); + return operations.GetNetworkRuleSetAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); } /// - /// Gets messaging plan for specified namespace. + /// Gets NetworkRuleSet for a Namespace. /// /// /// The operations group for this extension method. @@ -326,9 +700,9 @@ public static MessagingPlan GetMessagingPlan(this INamespacesOperations operatio /// /// The cancellation token. /// - public static async Task GetMessagingPlanAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetNetworkRuleSetAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetMessagingPlanWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetNetworkRuleSetWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -616,86 +990,34 @@ public static AccessKeys RegenerateKeys(this INamespacesOperations operations, s } /// - /// Create or update NetworkRuleSet for a Namespace. + /// Check the give Namespace name availability. /// /// /// The operations group for this extension method. /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name - /// /// - /// The Namespace IpFilterRule. + /// Parameters to check availability of the given Namespace name /// - public static NetworkRuleSet CreateOrUpdateNetworkRuleSet(this INamespacesOperations operations, string resourceGroupName, string namespaceName, NetworkRuleSet parameters) + public static CheckNameAvailabilityResult CheckNameAvailability(this INamespacesOperations operations, CheckNameAvailabilityParameter parameters) { - return operations.CreateOrUpdateNetworkRuleSetAsync(resourceGroupName, namespaceName, parameters).GetAwaiter().GetResult(); + return operations.CheckNameAvailabilityAsync(parameters).GetAwaiter().GetResult(); } /// - /// Create or update NetworkRuleSet for a Namespace. + /// Check the give Namespace name availability. /// /// /// The operations group for this extension method. /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name - /// /// - /// The Namespace IpFilterRule. - /// - /// - /// The cancellation token. - /// - public static async Task CreateOrUpdateNetworkRuleSetAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, NetworkRuleSet parameters, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.CreateOrUpdateNetworkRuleSetWithHttpMessagesAsync(resourceGroupName, namespaceName, parameters, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - - /// - /// Gets NetworkRuleSet for a Namespace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name - /// - public static NetworkRuleSet GetNetworkRuleSet(this INamespacesOperations operations, string resourceGroupName, string namespaceName) - { - return operations.GetNetworkRuleSetAsync(resourceGroupName, namespaceName).GetAwaiter().GetResult(); - } - - /// - /// Gets NetworkRuleSet for a Namespace. - /// - /// - /// The operations group for this extension method. - /// - /// - /// Name of the resource group within the azure subscription. - /// - /// - /// The Namespace name + /// Parameters to check availability of the given Namespace name /// /// /// The cancellation token. /// - public static async Task GetNetworkRuleSetAsync(this INamespacesOperations operations, string resourceGroupName, string namespaceName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CheckNameAvailabilityAsync(this INamespacesOperations operations, CheckNameAvailabilityParameter parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetNetworkRuleSetWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.CheckNameAvailabilityWithHttpMessagesAsync(parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -788,6 +1110,40 @@ public static void BeginDelete(this INamespacesOperations operations, string res (await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, namespaceName, null, cancellationToken).ConfigureAwait(false)).Dispose(); } + /// + /// Gets a list of IP Filter rules for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListIPFilterRulesNext(this INamespacesOperations operations, string nextPageLink) + { + return operations.ListIPFilterRulesNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of IP Filter rules for a 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> ListIPFilterRulesNextAsync(this INamespacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListIPFilterRulesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Lists all the available Namespaces within a subscription, irrespective of /// the resource groups. @@ -858,6 +1214,40 @@ public static IPage ListByResourceGroupNext(this INamespacesOperati } } + /// + /// Gets a list of VirtualNetwork rules for a Namespace. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListVirtualNetworkRulesNext(this INamespacesOperations operations, string nextPageLink) + { + return operations.ListVirtualNetworkRulesNextAsync(nextPageLink).GetAwaiter().GetResult(); + } + + /// + /// Gets a list of VirtualNetwork rules for a 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> ListVirtualNetworkRulesNextAsync(this INamespacesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListVirtualNetworkRulesNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Gets a list of authorization rules for a Namespace. /// diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Operations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Operations.cs index af8af791fa0d..2850113b89ee 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Operations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/Operations.cs @@ -65,21 +65,12 @@ internal Operations(EventHubManagementClient client) /// /// 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"); - } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -87,6 +78,7 @@ internal Operations(EventHubManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } @@ -94,9 +86,9 @@ internal Operations(EventHubManagementClient client) var _baseUrl = Client.BaseUri.AbsoluteUri; var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.EventHub/operations").ToString(); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/RegionsOperations.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/RegionsOperations.cs index 779366e125c9..2113c82dc61c 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/RegionsOperations.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/RegionsOperations.cs @@ -79,10 +79,6 @@ internal RegionsOperations(EventHubManagementClient client) /// public async Task>> ListBySkuWithHttpMessagesAsync(string sku, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { - if (Client.ApiVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); - } if (Client.SubscriptionId == null) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); @@ -102,6 +98,7 @@ internal RegionsOperations(EventHubManagementClient client) throw new ValidationException(ValidationRules.MinLength, "sku", 1); } } + string apiVersion = "2017-04-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -109,6 +106,7 @@ internal RegionsOperations(EventHubManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("sku", sku); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListBySku", tracingParameters); @@ -119,9 +117,9 @@ internal RegionsOperations(EventHubManagementClient client) _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); _url = _url.Replace("{sku}", System.Uri.EscapeDataString(sku)); List _queryParameters = new List(); - if (Client.ApiVersion != null) + if (apiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(apiVersion))); } if (_queryParameters.Count > 0) { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SdkInfo_EventHubManagementClient.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SdkInfo_EventHubManagementClient.cs index 0ebf53c7a660..c3783cbc0d85 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SdkInfo_EventHubManagementClient.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Generated/SdkInfo_EventHubManagementClient.cs @@ -19,14 +19,28 @@ public static IEnumerable> ApiInfo_EventHubManagem { return new Tuple[] { + new Tuple("EventHub", "Clusters", "2018-01-01-preview"), + new Tuple("EventHub", "Configuration", "2018-01-01-preview"), new Tuple("EventHub", "ConsumerGroups", "2017-04-01"), new Tuple("EventHub", "DisasterRecoveryConfigs", "2017-04-01"), new Tuple("EventHub", "EventHubs", "2017-04-01"), new Tuple("EventHub", "Namespaces", "2017-04-01"), + new Tuple("EventHub", "Namespaces", "2018-01-01-preview"), new Tuple("EventHub", "Operations", "2017-04-01"), new Tuple("EventHub", "Regions", "2017-04-01"), }.AsEnumerable(); } } + // BEGIN: Code Generation Metadata Section + public static readonly String AutoRestVersion = "v2"; + public static readonly String AutoRestBootStrapperVersion = "autorest@1.9.1"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/eventhub/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\\AutoRestSDK\\EH\\azure-sdk-for-net\\sdk"; + public static readonly String GithubForkName = "Azure"; + public static readonly String GithubBranchName = "master"; + public static readonly String GithubCommidId = "f93a02743ad250d914677b70712f15b2c953f1f5"; + public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubRepoName = "azure-rest-api-specs"; + // END: Code Generation Metadata Section } } + diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Microsoft.Azure.Management.EventHub.csproj b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Microsoft.Azure.Management.EventHub.csproj index e1b6ca6ed831..29e21eef074d 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Microsoft.Azure.Management.EventHub.csproj +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Microsoft.Azure.Management.EventHub.csproj @@ -6,13 +6,14 @@ Microsoft.Azure.Management.EventHub Provides developers with a library to create and manage all Azure Event Hubs resources. Note: This client library is for EventHub under Azure Resource Manager. - 2.5.0 + 2.6.0 Microsoft.Azure.Management.EventHub Microsoft Azure EventHubs Management;Event Hubs;Event Hubs management; $(SdkTargetFx) diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Properties/AssemblyInfo.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Properties/AssemblyInfo.cs index 4c07667d1d8d..a2c4e3e00366 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Properties/AssemblyInfo.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/src/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides developers with a library to create and manage all Azure Event Hubs resources.")] [assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.5.0.0")] +[assembly: AssemblyFileVersion("2.6.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Microsoft.Azure.Management.EventHub.Tests.csproj b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Microsoft.Azure.Management.EventHub.Tests.csproj index 383880f32aeb..a65753a671a2 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Microsoft.Azure.Management.EventHub.Tests.csproj +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Microsoft.Azure.Management.EventHub.Tests.csproj @@ -27,4 +27,7 @@ + + + diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/ConsumerGroupsCreateGetUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/ConsumerGroupsCreateGetUpdateDelete.json index 7e872d62fb16..833478767c53 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/ConsumerGroupsCreateGetUpdateDelete.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/ConsumerGroupsCreateGetUpdateDelete.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-7493?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3214321-4a58-4e63-a0f7-f69d3ec13272" + "7c81d91c-c8d2-4e99-b994-ad047f90de12" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,22 +24,28 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:37 GMT" + "Mon, 11 May 2020 07:13:45 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ3NDkzLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "ed0eb864-61db-42be-b1b2-ed463f3f4695" + "bee7fe93-cefd-4651-a551-61811050a3f1" ], "x-ms-correlation-request-id": [ - "ed0eb864-61db-42be-b1b2-ed463f3f4695" + "bee7fe93-cefd-4651-a551-61811050a3f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003738Z:ed0eb864-61db-42be-b1b2-ed463f3f4695" + "WESTUS:20200511T071345Z:bee7fe93-cefd-4651-a551-61811050a3f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,26 +54,23 @@ "nosniff" ], "Content-Length": [ - "2435" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb4d199e-83d8-4f6f-9e64-76ab0c589811" + "8e527725-f053-4943-bcfd-4c43329a4a81" ], "accept-language": [ "en-US" @@ -75,7 +78,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -84,22 +87,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:38 GMT" + "Mon, 11 May 2020 07:13:44 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "3a56fb63-68f2-44e3-a8a9-48279a4f0102" + "7206bd22-7788-4b06-8f55-505bab47e50c" ], "x-ms-correlation-request-id": [ - "3a56fb63-68f2-44e3-a8a9-48279a4f0102" + "7206bd22-7788-4b06-8f55-505bab47e50c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003738Z:3a56fb63-68f2-44e3-a8a9-48279a4f0102" + "WESTUS:20200511T071345Z:7206bd22-7788-4b06-8f55-505bab47e50c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +111,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "3375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,17 +120,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-3423?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "46192986-2b51-4ff8-8419-f984adbf67e9" + "c3b56f8e-c13d-4fd5-a023-ad32cac0d440" ], "accept-language": [ "en-US" @@ -135,75 +138,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Feb 2019 00:37:38 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/operationresults/sdk-Namespace-7173?api-version=2017-04-01" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "ced94485-b879-4d8e-925f-e87bf475c298_M11CH3_M11CH3" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "7819c778-faae-4fa8-9e3f-c66aa67e9512" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190201T003739Z:7819c778-faae-4fa8-9e3f-c66aa67e9512" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=utf-8" ], "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fcf51d63-be60-4158-adef-d2e606eb8224" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "36" ] }, "ResponseHeaders": { @@ -211,32 +153,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:39 GMT" + "Mon, 11 May 2020 07:13:48 GMT" ], "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/operationresults/sdk-Namespace-3870?api-version=2017-04-01" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "bfa4bbdd-ed80-4424-8b07-6a399dce39e1_M7CH3_M7CH3" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "2f8c10c3-5637-4f3c-bca8-1a14d7aae673" ], "x-ms-correlation-request-id": [ - "db5e4064-296f-4025-8b43-dff0e23fb7f4" + "2f8c10c3-5637-4f3c-bca8-1a14d7aae673" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003739Z:db5e4064-296f-4025-8b43-dff0e23fb7f4" + "WESTUS:20200511T071349Z:2f8c10c3-5637-4f3c-bca8-1a14d7aae673" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -245,23 +177,26 @@ "nosniff" ], "Content-Length": [ - "0" + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423\",\r\n \"name\": \"Default-EventHub-3423\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "04bf3874-f57d-4eb5-987b-762f8c405392" + "19744b46-716c-47f6-847e-fb3def037489" ], "accept-language": [ "en-US" @@ -269,8 +204,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -284,29 +219,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:42 GMT" + "Mon, 11 May 2020 07:14:05 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "cf841ede-d429-48fe-af4f-ee4faf345823_M11CH3_M11CH3" + "95315848-dbe1-4820-aa58-a92a78973c89_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "25d66140-21c9-4394-91a3-ba206def36bf" + "b8b13dcd-546a-4a43-ad9d-c55d5720fa7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003742Z:25d66140-21c9-4394-91a3-ba206def36bf" + "WESTUS:20200511T071406Z:b8b13dcd-546a-4a43-ad9d-c55d5720fa7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,7 +250,7 @@ "nosniff" ], "Content-Length": [ - "729" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,20 +259,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496\",\r\n \"name\": \"sdk-Namespace-5496\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-5496\",\r\n \"createdAt\": \"2019-02-01T00:37:41.257Z\",\r\n \"updatedAt\": \"2019-02-01T00:37:41.257Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-5496.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885\",\r\n \"name\": \"sdk-NS-885\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-885\",\r\n \"createdAt\": \"2020-05-11T07:14:04.973Z\",\r\n \"updatedAt\": \"2020-05-11T07:14:04.973Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-885.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -345,29 +280,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:38:12 GMT" + "Mon, 11 May 2020 07:14:35 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2896e247-9ba0-46d2-be4e-67b153ab48cb_M1CH3_M1CH3" + "6484d2e6-a11c-4a59-94db-569f964c0991_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "2ebf0d3e-c454-4f9a-b7c7-bc0bc425aa9e" + "46890575-9cc3-4bf3-a995-1c2b61e2725c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003813Z:2ebf0d3e-c454-4f9a-b7c7-bc0bc425aa9e" + "WESTUS:20200511T071436Z:46890575-9cc3-4bf3-a995-1c2b61e2725c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,7 +311,7 @@ "nosniff" ], "Content-Length": [ - "729" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,20 +320,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496\",\r\n \"name\": \"sdk-Namespace-5496\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-5496\",\r\n \"createdAt\": \"2019-02-01T00:37:41.257Z\",\r\n \"updatedAt\": \"2019-02-01T00:37:41.257Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-5496.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885\",\r\n \"name\": \"sdk-NS-885\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-885\",\r\n \"createdAt\": \"2020-05-11T07:14:04.973Z\",\r\n \"updatedAt\": \"2020-05-11T07:14:04.973Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-885.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -406,29 +341,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:38:42 GMT" + "Mon, 11 May 2020 07:15:06 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f7200885-e960-4a82-97ec-a3bb5e249a74_M0CH3_M0CH3" + "db02ed31-c8f2-4eb7-83e6-c6d6ea58f519_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "3f9d5737-d303-4431-bfa9-8fd9dfeffa47" + "ef2cd2cc-c39b-4ee0-a3c1-fd468e42d30e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003843Z:3f9d5737-d303-4431-bfa9-8fd9dfeffa47" + "WESTUS:20200511T071506Z:ef2cd2cc-c39b-4ee0-a3c1-fd468e42d30e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -437,7 +372,7 @@ "nosniff" ], "Content-Length": [ - "727" + "704" ], "Content-Type": [ "application/json; charset=utf-8" @@ -446,17 +381,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496\",\r\n \"name\": \"sdk-Namespace-5496\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-5496\",\r\n \"createdAt\": \"2019-02-01T00:37:41.257Z\",\r\n \"updatedAt\": \"2019-02-01T00:38:14.483Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-5496.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885\",\r\n \"name\": \"sdk-NS-885\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-885\",\r\n \"createdAt\": \"2020-05-11T07:14:04.973Z\",\r\n \"updatedAt\": \"2020-05-11T07:14:52.95Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-885.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi01Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTY1MTc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "20deb3fc-cc69-4cbc-886f-d795a07d930d" + "0472ac03-b54d-4316-a527-eee822fd3c87" ], "accept-language": [ "en-US" @@ -464,8 +399,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -479,29 +414,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:38:52 GMT" + "Mon, 11 May 2020 07:15:14 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e1c6f9f7-53d1-4205-931c-b1b362b2249b_M0CH3_M0CH3" + "5f6f0785-a137-40cf-af3f-201096e457b3_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "9b8f2a02-5047-41cb-a2b8-c67e60c14efa" + "1eb208bf-463d-4d2b-a68b-dea48de24d60" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003852Z:9b8f2a02-5047-41cb-a2b8-c67e60c14efa" + "WESTUS:20200511T071515Z:1eb208bf-463d-4d2b-a68b-dea48de24d60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,7 +445,7 @@ "nosniff" ], "Content-Length": [ - "487" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,17 +454,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537\",\r\n \"name\": \"sdk-EventHub-537\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:38:51.567Z\",\r\n \"updatedAt\": \"2019-02-01T00:38:51.833Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517\",\r\n \"name\": \"sdk-EventHub-6517\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:15:14.023Z\",\r\n \"updatedAt\": \"2020-05-11T07:15:14.37Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi01Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTY1MTc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e58f2398-9d58-45de-8679-1779e2e91fae" + "1ef9ee3f-ac9d-46cf-8346-061744488f7a" ], "accept-language": [ "en-US" @@ -537,8 +472,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -546,29 +481,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:38:53 GMT" + "Mon, 11 May 2020 07:15:15 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "96df7778-fd02-4134-be06-a3a690eafb85_M5CH3_M5CH3" + "9497ee6d-ed83-4e2b-aab2-a96c4db99991_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "887b8cbb-e054-4857-b558-736a5d0dd937" + "5fdd759c-b9fa-4342-a6f9-5df696922d14" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003854Z:887b8cbb-e054-4857-b558-736a5d0dd937" + "WESTUS:20200511T071515Z:5fdd759c-b9fa-4342-a6f9-5df696922d14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -577,7 +512,7 @@ "nosniff" ], "Content-Length": [ - "485" + "467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586,17 +521,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537\",\r\n \"name\": \"sdk-EventHub-537\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:38:51.567\",\r\n \"updatedAt\": \"2019-02-01T00:38:51.833\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517\",\r\n \"name\": \"sdk-EventHub-6517\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:15:14.023\",\r\n \"updatedAt\": \"2020-05-11T07:15:14.37\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-ConsumerGroup-9781?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi01MzcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTc4MT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-ConsumerGroup-4638?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTY1MTcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDYzOD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c124be7d-469d-4a60-b265-42fd2e2f6b22" + "dc485528-c005-411d-98bc-c64357f60601" ], "accept-language": [ "en-US" @@ -604,8 +539,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -619,29 +554,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:38:56 GMT" + "Mon, 11 May 2020 07:15:17 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3be3b3d4-66c5-4041-b165-660b1127007c_M0CH3_M0CH3" + "2a7aa624-e49d-4a9c-ab35-98330458f5a0_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "a10784db-0382-476c-835d-5022d5161707" + "6865e96b-7740-4261-a817-4d08239539b5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003856Z:a10784db-0382-476c-835d-5022d5161707" + "WESTUS:20200511T071517Z:6865e96b-7740-4261-a817-4d08239539b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -650,7 +585,7 @@ "nosniff" ], "Content-Length": [ - "488" + "470" ], "Content-Type": [ "application/json; charset=utf-8" @@ -659,17 +594,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-ConsumerGroup-9781\",\r\n \"name\": \"sdk-ConsumerGroup-9781\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:38:56.0657031Z\",\r\n \"updatedAt\": \"2019-02-01T00:38:56.0657031Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-ConsumerGroup-4638\",\r\n \"name\": \"sdk-ConsumerGroup-4638\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:15:16.8752712Z\",\r\n \"updatedAt\": \"2020-05-11T07:15:16.8752712Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-ConsumerGroup-9781?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi01MzcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTc4MT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-ConsumerGroup-4638?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTY1MTcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDYzOD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "563f4bf2-f756-46b2-b3fe-99daf362c48a" + "039c2b2f-a1de-462a-b1a5-159e4963e328" ], "accept-language": [ "en-US" @@ -677,8 +612,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -692,29 +627,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:39:00 GMT" + "Mon, 11 May 2020 07:15:18 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3f886485-91ea-4802-8270-cf5b08aba079_M1CH3_M1CH3" + "5f41ad8e-cf35-41fc-b171-933326f73ef7_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "f3dd43ae-3d51-42f0-939e-846ff7d0559d" + "9430f198-5203-4f27-be46-d41d42bde878" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003900Z:f3dd43ae-3d51-42f0-939e-846ff7d0559d" + "WESTUS:20200511T071518Z:9430f198-5203-4f27-be46-d41d42bde878" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -723,7 +658,7 @@ "nosniff" ], "Content-Length": [ - "501" + "483" ], "Content-Type": [ "application/json; charset=utf-8" @@ -732,17 +667,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-ConsumerGroup-9781\",\r\n \"name\": \"sdk-ConsumerGroup-9781\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:39:00.5959026Z\",\r\n \"updatedAt\": \"2019-02-01T00:39:00.5959026Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-ConsumerGroup-4638\",\r\n \"name\": \"sdk-ConsumerGroup-4638\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:15:18.4377565Z\",\r\n \"updatedAt\": \"2020-05-11T07:15:18.4377565Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-ConsumerGroup-9781?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi01MzcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTc4MT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-ConsumerGroup-4638?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTY1MTcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDYzOD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ed75c22-9f2e-4391-83cc-77262a19c05a" + "1d07b1e2-9488-49db-96bf-4ef21628697b" ], "accept-language": [ "en-US" @@ -750,8 +685,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -759,29 +694,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:38:58 GMT" + "Mon, 11 May 2020 07:15:17 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e1d504a7-3d0c-481f-b620-a9ad62f316c4_M6CH3_M6CH3" + "a04dac0d-5ad2-4186-98ec-f5de2d2a263e_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "7c733561-eaef-4c01-b940-221d38fbb950" + "fb565352-de57-4ef0-a02b-fbfa2564c7ad" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003858Z:7c733561-eaef-4c01-b940-221d38fbb950" + "WESTUS:20200511T071517Z:fb565352-de57-4ef0-a02b-fbfa2564c7ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -790,7 +725,7 @@ "nosniff" ], "Content-Length": [ - "486" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -799,17 +734,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-ConsumerGroup-9781\",\r\n \"name\": \"sdk-ConsumerGroup-9781\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:38:56.0872211\",\r\n \"updatedAt\": \"2019-02-01T00:38:56.0872211\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-ConsumerGroup-4638\",\r\n \"name\": \"sdk-ConsumerGroup-4638\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:15:16.874Z\",\r\n \"updatedAt\": \"2020-05-11T07:15:16.874Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-ConsumerGroup-9781?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi01MzcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTc4MT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-ConsumerGroup-4638?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTY1MTcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDYzOD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7f07b64-f24a-4d30-96ee-396c5704e71b" + "6e28e891-6857-4a80-b7f0-dd3d4ebe6e2d" ], "accept-language": [ "en-US" @@ -817,8 +752,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -826,29 +761,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:39:02 GMT" + "Mon, 11 May 2020 07:15:18 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e73fe5ab-83b0-4f1e-8d8b-647e33344a16_M11CH3_M11CH3" + "cb78d5f0-5295-4a9b-a4c1-de2635f73f2e_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "40f76563-5a6a-4d9d-a2ca-ecb8ce322a6a" + "b0a595ce-7576-4114-8ed7-e57c8fb0b267" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003902Z:40f76563-5a6a-4d9d-a2ca-ecb8ce322a6a" + "WESTUS:20200511T071518Z:b0a595ce-7576-4114-8ed7-e57c8fb0b267" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -857,7 +792,7 @@ "nosniff" ], "Content-Length": [ - "499" + "475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -866,17 +801,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-ConsumerGroup-9781\",\r\n \"name\": \"sdk-ConsumerGroup-9781\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:38:56.0773209\",\r\n \"updatedAt\": \"2019-02-01T00:38:56.0773209\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-ConsumerGroup-4638\",\r\n \"name\": \"sdk-ConsumerGroup-4638\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:15:16.874Z\",\r\n \"updatedAt\": \"2020-05-11T07:15:16.874Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi01MzcvY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTY1MTcvY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "425cc7b5-242e-469a-abc2-2700cf927fc1" + "384bb660-7b86-424a-8cdc-c6ee631c19cf" ], "accept-language": [ "en-US" @@ -884,8 +819,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -893,32 +828,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:38:58 GMT" + "Mon, 11 May 2020 07:15:17 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "506840d9-654b-4702-9489-450b7a1a75ae_M6CH3_M6CH3" + "5814afe0-fe96-4bf0-9127-7d20a50dfa55_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "a85249b8-0225-49b0-92fa-5866fb25ae63" + "ac43fa60-2ae2-4fa4-9271-821a11c8ca61" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003858Z:a85249b8-0225-49b0-92fa-5866fb25ae63" + "WESTUS:20200511T071517Z:ac43fa60-2ae2-4fa4-9271-821a11c8ca61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -927,7 +862,7 @@ "nosniff" ], "Content-Length": [ - "926" + "878" ], "Content-Type": [ "application/json; charset=utf-8" @@ -936,17 +871,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/$Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:38:51.6077455\",\r\n \"updatedAt\": \"2019-02-01T00:38:51.6077455\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-consumergroup-9781\",\r\n \"name\": \"sdk-consumergroup-9781\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:38:56.0773209\",\r\n \"updatedAt\": \"2019-02-01T00:38:56.0773209\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/$Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:15:14.068Z\",\r\n \"updatedAt\": \"2020-05-11T07:15:14.068Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-consumergroup-4638\",\r\n \"name\": \"sdk-consumergroup-4638\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:15:16.882Z\",\r\n \"updatedAt\": \"2020-05-11T07:15:16.882Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537/consumergroups/sdk-ConsumerGroup-9781?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi01MzcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTc4MT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517/consumergroups/sdk-ConsumerGroup-4638?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTY1MTcvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDYzOD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbee04b1-3982-4bcd-943d-ba91f587d11a" + "f351b2a3-7bdc-4975-87f5-2dc45f972f3f" ], "accept-language": [ "en-US" @@ -954,8 +889,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -963,29 +898,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:39:02 GMT" + "Mon, 11 May 2020 07:15:19 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3cba272f-cb39-4082-a916-b7467693a2fa_M6CH3_M6CH3" + "94e7dc45-f5d6-475c-afb6-a3658a8c25be_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "ae253998-6ae9-4d8c-b08f-767c566fba1b" + "54b2d7cf-d714-4bc1-87f0-9f25fd5c613a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003903Z:ae253998-6ae9-4d8c-b08f-767c566fba1b" + "WESTUS:20200511T071519Z:54b2d7cf-d714-4bc1-87f0-9f25fd5c613a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1004,13 +939,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/eventhubs/sdk-EventHub-537?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi01Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/eventhubs/sdk-EventHub-6517?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTY1MTc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3678f058-2dd7-4150-a47e-7711e56ed6af" + "85c3f103-b9d3-4761-a3b8-99ac0050eb56" ], "accept-language": [ "en-US" @@ -1018,8 +953,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1027,29 +962,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:39:04 GMT" + "Mon, 11 May 2020 07:15:20 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e4b4f338-d1cb-44f7-bb35-121dba824333_M6CH3_M6CH3" + "59597b6d-af92-46e9-bdbf-a9af5301f4ff_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "949572f2-32b8-4b62-b40f-0cd4c3964306" + "de9099b5-efc0-4d07-a5cb-0183acb2bbbe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003904Z:949572f2-32b8-4b62-b40f-0cd4c3964306" + "WESTUS:20200511T071520Z:de9099b5-efc0-4d07-a5cb-0183acb2bbbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1068,13 +1003,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecae6073-9043-4122-9163-9a984d8523e2" + "288def33-af7b-4c62-87db-5e994c799103" ], "accept-language": [ "en-US" @@ -1082,8 +1017,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1091,32 +1026,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:39:05 GMT" + "Mon, 11 May 2020 07:15:22 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/operationresults/sdk-Namespace-5496?api-version=2017-04-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/operationresults/sdk-NS-885?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f12fd5e5-da75-4bf1-9b6e-495df4920355_M6CH3_M6CH3" + "7f67e88e-533a-48d6-8395-bc86fedd9727_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14996" ], "x-ms-correlation-request-id": [ - "bb8431f8-7623-41e1-baa7-89285573aaa1" + "f9bd98e9-3151-45f2-a984-8084a59c4f2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003906Z:bb8431f8-7623-41e1-baa7-89285573aaa1" + "WESTUS:20200511T071522Z:f9bd98e9-3151-45f2-a984-8084a59c4f2b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1135,16 +1070,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/operationresults/sdk-Namespace-5496?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTU0OTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/operationresults/sdk-NS-885?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy04ODU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1152,29 +1087,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:39:35 GMT" + "Mon, 11 May 2020 07:15:52 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "94796b3c-74c9-4d63-a1fb-6873f0011e7e_M2CH3_M2CH3" + "165c6ffa-0d13-4673-b5fc-e2dc448c86d2_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "4092cd61-f922-4fa2-8e29-5ea835c97b26" + "73782c92-752e-4d76-b65d-1fdb6f5218ab" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003936Z:4092cd61-f922-4fa2-8e29-5ea835c97b26" + "WESTUS:20200511T071552Z:73782c92-752e-4d76-b65d-1fdb6f5218ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1193,16 +1128,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5496/operationresults/sdk-Namespace-5496?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTU0OTYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTU0OTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3423/providers/Microsoft.EventHub/namespaces/sdk-NS-885/operationresults/sdk-NS-885?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg4NS9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy04ODU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1210,29 +1145,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:39:35 GMT" + "Mon, 11 May 2020 07:15:52 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "558925cc-1e58-403a-b454-e0dffe3b62f2_M2CH3_M2CH3" + "fa644e5b-e57a-4b9c-8f2b-01a6de59bb73_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "0c747465-6ae3-460b-9c8b-04bc482039c0" + "5a0d2c28-8fc4-4c87-8105-8b9b7862e244" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003936Z:0c747465-6ae3-460b-9c8b-04bc482039c0" + "WESTUS:20200511T071552Z:5a0d2c28-8fc4-4c87-8105-8b9b7862e244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1249,16 +1184,80 @@ }, "ResponseBody": "", "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-3423?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzQyMz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20499eb3-bd1a-4342-b7f7-b6f230a2d512" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 07:15:56 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQzNDIzLUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "bc218586-4f25-4fe1-a350-ba9862fb3cd5" + ], + "x-ms-correlation-request-id": [ + "bc218586-4f25-4fe1-a350-ba9862fb3cd5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T071557Z:bc218586-4f25-4fe1-a350-ba9862fb3cd5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 } ], "Names": { "ConsumerGroupsCreateGetUpdateDelete": [ - "sdk-Namespace-5496", - "sdk-EventHub-537", - "sdk-ConsumerGroup-9781" + "Default-EventHub-3423", + "sdk-NS-885", + "sdk-EventHub-6517", + "sdk-ConsumerGroup-4638" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/ConsumerGroupsCreateGetUpdateDelete_Length.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/ConsumerGroupsCreateGetUpdateDelete_Length.json index 536a2db2266f..31fe29ccbb58 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/ConsumerGroupsCreateGetUpdateDelete_Length.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/ConsumerGroupsCreateGetUpdateDelete_Length.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "946395b4-d5fa-4bdc-8e9c-c86876ca64d6" + "56c3a15d-87e6-468b-9bb8-6ffe413e5209" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,7 +24,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:02 GMT" + "Mon, 11 May 2020 08:11:16 GMT" ], "Pragma": [ "no-cache" @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "bd827f30-aa86-4d2b-b67e-0259a83b8e71" + "acfd28c6-df2c-4c96-9560-a2b6c5284d67" ], "x-ms-correlation-request-id": [ - "bd827f30-aa86-4d2b-b67e-0259a83b8e71" + "acfd28c6-df2c-4c96-9560-a2b6c5284d67" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002502Z:bd827f30-aa86-4d2b-b67e-0259a83b8e71" + "WESTUS:20200511T081116Z:acfd28c6-df2c-4c96-9560-a2b6c5284d67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "2435" + "3375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8084?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f14f955f-f2d8-4195-866b-040da1a5f637" + "983d463e-1a61-4894-97f9-11494af6c063" ], "accept-language": [ "en-US" @@ -75,7 +75,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -84,22 +84,91 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:02 GMT" + "Mon, 11 May 2020 08:11:16 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ4MDg0LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "ea0f4563-5778-4169-86a7-eba891529fc9" + ], + "x-ms-correlation-request-id": [ + "ea0f4563-5778-4169-86a7-eba891529fc9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T081117Z:ea0f4563-5778-4169-86a7-eba891529fc9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-5010?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd6932e0-6609-4a5c-9f84-159156189b01" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 08:11:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "836efd35-c6e0-4cfd-947c-8d3c7ed70fb9" + "9b831c68-f688-4ad2-9f46-36dd93b8516d" ], "x-ms-correlation-request-id": [ - "836efd35-c6e0-4cfd-947c-8d3c7ed70fb9" + "9b831c68-f688-4ad2-9f46-36dd93b8516d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002502Z:836efd35-c6e0-4cfd-947c-8d3c7ed70fb9" + "WESTUS:20200511T081119Z:9b831c68-f688-4ad2-9f46-36dd93b8516d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +177,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,17 +186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010\",\r\n \"name\": \"Default-EventHub-5010\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4e21e903-6ff8-4713-8d0c-373ec59d3136" + "5c5ff24c-644a-4019-b1bf-455af35cb72a" ], "accept-language": [ "en-US" @@ -135,8 +204,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,29 +219,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:06 GMT" + "Mon, 11 May 2020 08:11:26 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "248eabb0-6b1b-4852-a568-7e4433b1b43b_M10CH3_M10CH3" + "1ec3da8a-07a8-4846-8e3e-8f942a4904f7_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "27fa1b87-9302-449c-9ad4-5e795fe44d6d" + "9aafd705-738d-4be3-9d59-3f1485d6cc6c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002507Z:27fa1b87-9302-449c-9ad4-5e795fe44d6d" + "WESTUS:20200511T081127Z:9aafd705-738d-4be3-9d59-3f1485d6cc6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,7 +250,7 @@ "nosniff" ], "Content-Length": [ - "729" + "703" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,20 +259,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416\",\r\n \"name\": \"sdk-Namespace-9416\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-9416\",\r\n \"createdAt\": \"2019-02-01T00:25:05.713Z\",\r\n \"updatedAt\": \"2019-02-01T00:25:05.713Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-9416.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96\",\r\n \"name\": \"sdk-NS-96\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-96\",\r\n \"createdAt\": \"2020-05-11T08:11:26.133Z\",\r\n \"updatedAt\": \"2020-05-11T08:11:26.133Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-96.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -211,29 +280,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:37 GMT" + "Mon, 11 May 2020 08:11:57 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "622f923b-232c-4cdc-8297-8bd6b6a9cf47_M10CH3_M10CH3" + "d6d57b8d-6252-473c-9d0f-b913c83015c4_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "1afc8b89-5cc7-42b3-8287-65125dc66b63" + "b6f251d4-fef2-4554-b023-7295b75b235d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002537Z:1afc8b89-5cc7-42b3-8287-65125dc66b63" + "WESTUS:20200511T081157Z:b6f251d4-fef2-4554-b023-7295b75b235d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,7 +311,7 @@ "nosniff" ], "Content-Length": [ - "727" + "703" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,17 +320,78 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416\",\r\n \"name\": \"sdk-Namespace-9416\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-9416\",\r\n \"createdAt\": \"2019-02-01T00:25:05.713Z\",\r\n \"updatedAt\": \"2019-02-01T00:25:33.703Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-9416.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96\",\r\n \"name\": \"sdk-NS-96\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-96\",\r\n \"createdAt\": \"2020-05-11T08:11:26.133Z\",\r\n \"updatedAt\": \"2020-05-11T08:11:26.133Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-96.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 08:12:27 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "decee3b4-268c-4969-a911-51e6cc29ae13_M2SN1_M2SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "e8b7bea1-7471-428f-8305-86e0fdccc4ad" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T081228Z:e8b7bea1-7471-428f-8305-86e0fdccc4ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96\",\r\n \"name\": \"sdk-NS-96\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-96\",\r\n \"createdAt\": \"2020-05-11T08:11:26.133Z\",\r\n \"updatedAt\": \"2020-05-11T08:12:14.14Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-96.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L2V2ZW50aHVicy9zZGstRXZlbnRIdWItP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9c891c0a-2fc3-43ee-9610-10ee542ade66" + "9727e13c-1a9a-4e32-8cec-f6586e074628" ], "accept-language": [ "en-US" @@ -269,8 +399,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -284,29 +414,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:46 GMT" + "Mon, 11 May 2020 08:12:36 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f43e6236-c436-4a33-8df4-5a18bbf4716e_M6CH3_M6CH3" + "fb88a8c1-3553-47c4-b3ca-3e16d38cc367_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "30515021-2706-440b-a3a0-67d279b1b753" + "6d2fccaf-434f-47fc-be59-be094fbd9b73" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002546Z:30515021-2706-440b-a3a0-67d279b1b753" + "WESTUS:20200511T081237Z:6d2fccaf-434f-47fc-be59-be094fbd9b73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,7 +445,7 @@ "nosniff" ], "Content-Length": [ - "637" + "461" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,17 +454,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"name\": \"sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:25:45.72Z\",\r\n \"updatedAt\": \"2019-02-01T00:25:45.94Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-\",\r\n \"name\": \"sdk-EventHub-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T08:12:35.547Z\",\r\n \"updatedAt\": \"2020-05-11T08:12:36.517Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L2V2ZW50aHVicy9zZGstRXZlbnRIdWItP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4eb6bac-e67d-471e-b013-10a84bdc9b68" + "39d0cb94-6876-4c6b-b233-6bd219c81294" ], "accept-language": [ "en-US" @@ -342,8 +472,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -351,29 +481,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:46 GMT" + "Mon, 11 May 2020 08:12:36 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b81bb346-d34b-460c-bcfe-dc25a0e04380_M6CH3_M6CH3" + "ae90ac72-54f7-4135-90ad-2d6ce0da693e_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11996" ], "x-ms-correlation-request-id": [ - "a2f13883-49a7-4200-8e5b-3e07d49c74a8" + "863a5660-0003-468c-83e8-db627daede01" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002547Z:a2f13883-49a7-4200-8e5b-3e07d49c74a8" + "WESTUS:20200511T081237Z:863a5660-0003-468c-83e8-db627daede01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,7 +512,7 @@ "nosniff" ], "Content-Length": [ - "635" + "459" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,17 +521,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"name\": \"sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:25:45.72\",\r\n \"updatedAt\": \"2019-02-01T00:25:45.94\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-\",\r\n \"name\": \"sdk-EventHub-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T08:12:35.547\",\r\n \"updatedAt\": \"2020-05-11T08:12:36.517\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2NvbnN1bWVyZ3JvdXBzL3RoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmcXdlcnQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L2V2ZW50aHVicy9zZGstRXZlbnRIdWItL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "37045ac1-4b34-43d2-a1bb-89c3e46ea04d" + "40cab3d0-8980-4fef-998c-f820808b98aa" ], "accept-language": [ "en-US" @@ -409,8 +539,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -424,29 +554,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:50 GMT" + "Mon, 11 May 2020 08:12:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "402d1781-fc26-4f7d-b541-2c06380f5008_M0CH3_M0CH3" + "ea0804b8-2dfe-4836-bd2b-8aab35eecd04_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "b9e6797c-927e-432b-b9bb-7d3926de561a" + "9e0a2588-75d0-4339-970e-95215ad9092e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002550Z:b9e6797c-927e-432b-b9bb-7d3926de561a" + "WESTUS:20200511T081239Z:9e0a2588-75d0-4339-970e-95215ad9092e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -455,7 +585,7 @@ "nosniff" ], "Content-Length": [ - "618" + "457" ], "Content-Type": [ "application/json; charset=utf-8" @@ -464,17 +594,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"name\": \"thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:25:50.1448363Z\",\r\n \"updatedAt\": \"2019-02-01T00:25:50.1448363Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-\",\r\n \"name\": \"sdk-ConsumerGroup-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T08:12:39.0960207Z\",\r\n \"updatedAt\": \"2020-05-11T08:12:39.0960207Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2NvbnN1bWVyZ3JvdXBzL3RoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmcXdlcnQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L2V2ZW50aHVicy9zZGstRXZlbnRIdWItL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f8c244eb-beca-4aa6-89f9-67c99fe4f16e" + "2dbb4548-eaac-41c5-8384-971b993825f0" ], "accept-language": [ "en-US" @@ -482,8 +612,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -497,29 +627,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:53 GMT" + "Mon, 11 May 2020 08:12:40 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d6dfcf2f-aacd-421a-952b-40e77cf73fc2_M7CH3_M7CH3" + "9ee84a11-9bae-4a37-bf79-d79e57e97b58_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "07dedc09-53ca-45e2-9aa6-cf949bf8629a" + "5ee27506-c85d-4aa1-8cde-1fd8f1392fdb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002553Z:07dedc09-53ca-45e2-9aa6-cf949bf8629a" + "WESTUS:20200511T081241Z:5ee27506-c85d-4aa1-8cde-1fd8f1392fdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -528,7 +658,7 @@ "nosniff" ], "Content-Length": [ - "631" + "470" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,17 +667,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"name\": \"thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:25:53.3413682Z\",\r\n \"updatedAt\": \"2019-02-01T00:25:53.3413682Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-\",\r\n \"name\": \"sdk-ConsumerGroup-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T08:12:40.9553939Z\",\r\n \"updatedAt\": \"2020-05-11T08:12:40.9553939Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2NvbnN1bWVyZ3JvdXBzL3RoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmcXdlcnQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L2V2ZW50aHVicy9zZGstRXZlbnRIdWItL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b20e10c6-5b3c-41e6-8b81-6e5a94d47674" + "bddd9e73-f227-4d4e-a912-9886d3160453" ], "accept-language": [ "en-US" @@ -555,8 +685,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -564,29 +694,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:51 GMT" + "Mon, 11 May 2020 08:12:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "9550478d-3947-4644-aa74-9391716becf4_M7CH3_M7CH3" + "0a7c8253-9d3c-41a8-87ad-b12591afe6a6_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-correlation-request-id": [ - "b3e785be-bd79-4380-8cf2-cb375186e921" + "fad8c1b0-5516-4056-bb8b-a11926c91dff" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002552Z:b3e785be-bd79-4380-8cf2-cb375186e921" + "WESTUS:20200511T081239Z:fad8c1b0-5516-4056-bb8b-a11926c91dff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +725,7 @@ "nosniff" ], "Content-Length": [ - "616" + "449" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,17 +734,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"name\": \"thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:25:50.1568043\",\r\n \"updatedAt\": \"2019-02-01T00:25:50.1568043\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-\",\r\n \"name\": \"sdk-ConsumerGroup-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T08:12:39.098Z\",\r\n \"updatedAt\": \"2020-05-11T08:12:39.098Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2NvbnN1bWVyZ3JvdXBzL3RoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmcXdlcnQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L2V2ZW50aHVicy9zZGstRXZlbnRIdWItL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c57cdec4-082c-4f7b-bf96-71f6bca273f3" + "ecb22c2c-2cf1-4750-a839-5c166e795cdf" ], "accept-language": [ "en-US" @@ -622,8 +752,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -631,29 +761,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:53 GMT" + "Mon, 11 May 2020 08:12:41 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "71c59e64-e951-479b-8174-942fdac77cda_M7CH3_M7CH3" + "d4deef52-43e2-4e16-8da5-430b6f2eab36_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11993" ], "x-ms-correlation-request-id": [ - "7d7a8622-e1d5-4542-9017-8cbee7b5c544" + "8ea32ee1-85fc-43ce-a266-b1d36039b8f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002554Z:7d7a8622-e1d5-4542-9017-8cbee7b5c544" + "WESTUS:20200511T081241Z:8ea32ee1-85fc-43ce-a266-b1d36039b8f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,7 +792,7 @@ "nosniff" ], "Content-Length": [ - "629" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -671,17 +801,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"name\": \"thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:25:50.1590714\",\r\n \"updatedAt\": \"2019-02-01T00:25:50.1590714\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-\",\r\n \"name\": \"sdk-ConsumerGroup-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T08:12:39.096Z\",\r\n \"updatedAt\": \"2020-05-11T08:12:39.096Z\",\r\n \"userMetadata\": \"Updated the user meta data\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2NvbnN1bWVyZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L2V2ZW50aHVicy9zZGstRXZlbnRIdWItL2NvbnN1bWVyZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8a10ddc-9a34-4b27-92a1-bb7036e3befa" + "b324e2a7-bcfa-41e3-943b-667cb86eaea0" ], "accept-language": [ "en-US" @@ -689,8 +819,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -698,32 +828,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:52 GMT" + "Mon, 11 May 2020 08:12:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "3741742d-ed8f-4a87-83cf-640f54a8adc6_M7CH3_M7CH3" + "016351b9-d3a1-4812-972f-11c3dcad7af0_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-correlation-request-id": [ - "1860eb68-87e8-4225-b257-aee08cbe2fdd" + "ac09702d-6539-4c5a-88cc-a8b99c2eea0d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002552Z:1860eb68-87e8-4225-b257-aee08cbe2fdd" + "WESTUS:20200511T081240Z:ac09702d-6539-4c5a-88cc-a8b99c2eea0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,7 +862,7 @@ "nosniff" ], "Content-Length": [ - "1132" + "860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -741,17 +871,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/$Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:25:45.7491339\",\r\n \"updatedAt\": \"2019-02-01T00:25:45.7491339\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"name\": \"thisisthenamewithmorethan53charschecktoverifqwert\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:25:50.1568043\",\r\n \"updatedAt\": \"2019-02-01T00:25:50.1568043\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/$Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T08:12:35.581Z\",\r\n \"updatedAt\": \"2020-05-11T08:12:35.581Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-consumergroup-\",\r\n \"name\": \"sdk-consumergroup-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T08:12:39.098Z\",\r\n \"updatedAt\": \"2020-05-11T08:12:39.098Z\",\r\n \"userMetadata\": \"Newly Created\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/consumergroups/thisisthenamewithmorethan53charschecktoverifqwert?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2NvbnN1bWVyZ3JvdXBzL3RoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmcXdlcnQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-/consumergroups/sdk-ConsumerGroup-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L2V2ZW50aHVicy9zZGstRXZlbnRIdWItL2NvbnN1bWVyZ3JvdXBzL3Nkay1Db25zdW1lckdyb3VwLT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cd8d680-6010-4825-8051-974a75ed512c" + "8ce1a4e4-9fbe-4369-a759-c0400cdd7bca" ], "accept-language": [ "en-US" @@ -759,8 +889,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -768,29 +898,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:54 GMT" + "Mon, 11 May 2020 08:12:41 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5bc764d3-3011-4503-9852-e11976af6710_M7CH3_M7CH3" + "a4b1c6fa-d3ed-4767-8092-bff7892c4cfd_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "7896c1d2-1c27-41d0-801d-cd1c04e21032" + "68a6b329-9c66-4f1c-85bd-15048bc6adf0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002554Z:7896c1d2-1c27-41d0-801d-cd1c04e21032" + "WESTUS:20200511T081241Z:68a6b329-9c66-4f1c-85bd-15048bc6adf0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,13 +939,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/eventhubs/sdk-EventHub-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L2V2ZW50aHVicy9zZGstRXZlbnRIdWItP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e932ad19-9217-4eea-9d1e-437bf35089ef" + "dbf65b33-e372-422a-bce0-e71ce6744d67" ], "accept-language": [ "en-US" @@ -823,8 +953,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -832,29 +962,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:55 GMT" + "Mon, 11 May 2020 08:12:42 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ef511199-2475-46ef-bd41-53047b9533a2_M7CH3_M7CH3" + "a9285ed1-8d9a-4754-a069-208326b5bb60_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "d42e3847-78ec-49ab-8a48-39af8226bab2" + "02d4cb82-e4bf-4b3a-852c-6687577e05dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002556Z:d42e3847-78ec-49ab-8a48-39af8226bab2" + "WESTUS:20200511T081243Z:02d4cb82-e4bf-4b3a-852c-6687577e05dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -873,13 +1003,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d5b648c-dec8-4fc6-8ba4-d51a75066aa6" + "b2a2220f-252b-4ef1-9cca-0e2f1c67d2ba" ], "accept-language": [ "en-US" @@ -887,8 +1017,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -896,32 +1026,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:57 GMT" + "Mon, 11 May 2020 08:12:43 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/operationresults/sdk-Namespace-9416?api-version=2017-04-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/operationresults/sdk-NS-96?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "eea10c99-0926-4c06-bfd7-2274829d6aa6_M7CH3_M7CH3" + "4d3cf2a9-af6f-4278-a14a-d5e5f7c71888_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "c5b23ec1-97e6-42db-882e-db324a3aec19" + "9df445ea-2f2a-4526-868f-c425506f8cea" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002557Z:c5b23ec1-97e6-42db-882e-db324a3aec19" + "WESTUS:20200511T081244Z:9df445ea-2f2a-4526-868f-c425506f8cea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,16 +1070,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/operationresults/sdk-Namespace-9416?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTk0MTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/operationresults/sdk-NS-96?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L29wZXJhdGlvbnJlc3VsdHMvc2RrLU5TLTk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -957,29 +1087,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:26:27 GMT" + "Mon, 11 May 2020 08:13:13 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "eae9e736-b683-452a-96e4-3040f0d7499d_M0CH3_M0CH3" + "76cacedf-2013-4e4b-a254-827f17f1a63c_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "7ee12acc-2ccb-4012-ad60-68d7967e20b4" + "51d60534-155d-4e77-8c8c-89de0d13d5dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002627Z:7ee12acc-2ccb-4012-ad60-68d7967e20b4" + "WESTUS:20200511T081314Z:51d60534-155d-4e77-8c8c-89de0d13d5dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -998,16 +1128,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9416/operationresults/sdk-Namespace-9416?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTk0MTYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTk0MTY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-5010/providers/Microsoft.EventHub/namespaces/sdk-NS-96/operationresults/sdk-NS-96?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNTAxMC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTk2L29wZXJhdGlvbnJlc3VsdHMvc2RrLU5TLTk2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1015,29 +1145,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:26:27 GMT" + "Mon, 11 May 2020 08:13:13 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2cf91188-ebc9-444d-b0d1-3c1d5dec61a3_M0CH3_M0CH3" + "8cf9de2d-a308-4f30-888a-5044a0ce3707_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "5224ac45-e62f-43fc-95e7-7acf04692f09" + "6f7bfedf-bfad-480c-9819-643dfde2906d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002628Z:5224ac45-e62f-43fc-95e7-7acf04692f09" + "WESTUS:20200511T081314Z:6f7bfedf-bfad-480c-9819-643dfde2906d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1058,10 +1188,11 @@ ], "Names": { "ConsumerGroupsCreateGetUpdateDelete_Length": [ - "sdk-Namespace-9416" + "Default-EventHub-5010", + "sdk-NS-96" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DedicatedClusterGetCreateNamespace.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DedicatedClusterGetCreateNamespace.json new file mode 100644 index 000000000000..99071d1d910a --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DedicatedClusterGetCreateNamespace.json @@ -0,0 +1,408 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL2NsdXN0ZXJzL1BNVGVzdENsdXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66042082-cdf4-426f-a4ad-09039c16ba31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:11:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "dc1881ee-c22c-4d6e-98cc-527249098843_M5SN1_M5SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c421ac39-5f8d-469e-94ac-b153b5e3a476" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171101Z:c421ac39-5f8d-469e-94ac-b153b5e3a476" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "380" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Dedicated\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"name\": \"PMTestCluster\",\r\n \"type\": \"Microsoft.EventHub/clusters\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-05-09T23:16:05.92Z\",\r\n \"updatedAt\": \"2019-05-09T23:16:05.92Z\",\r\n \"metricId\": \"PROD-BY3-533\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdk-Namespace-6707\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c09522e5-4153-4a15-9897-fc227b7228cb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:11:00 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "194944e7-9d53-4559-a5e2-96a9103d5a34_M5SN1_M5SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e3cfb1b2-5ddc-4bac-8473-897068eb16ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171101Z:e3cfb1b2-5ddc-4bac-8473-897068eb16ee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "53" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"None\",\r\n \"message\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS02NzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a49a11e-7a0a-4086-8f8b-57395f503c99" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "466" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:11:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c33b3dbb-7716-4502-8254-baa1b34a74ea_M5SN1_M5SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" + ], + "x-ms-correlation-request-id": [ + "c5e834d3-b338-425e-89c7-5002c3f80578" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171105Z:c5e834d3-b338-425e-89c7-5002c3f80578" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1027" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707\",\r\n \"name\": \"sdk-Namespace-6707\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"b837b4cc-2234-4278-aa72-81d9dc054039\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6707\",\r\n \"createdAt\": \"2020-05-08T17:11:05.04Z\",\r\n \"updatedAt\": \"2020-05-08T17:11:05.04Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6707.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS02NzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:11:34 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "fcf31b77-01aa-45dd-8323-8000171dcdff_M2SN1_M2SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "4bcb6cc7-ad18-4815-ac97-365dbca058eb" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171135Z:4bcb6cc7-ad18-4815-ac97-365dbca058eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1027" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707\",\r\n \"name\": \"sdk-Namespace-6707\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"b837b4cc-2234-4278-aa72-81d9dc054039\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6707\",\r\n \"createdAt\": \"2020-05-08T17:11:05.04Z\",\r\n \"updatedAt\": \"2020-05-08T17:11:05.04Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6707.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS02NzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:12:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "30e6b193-631c-436e-825f-49761ebbe743_M6SN1_M6SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "0978beb8-634a-4421-86b4-c7d8eb91d084" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171205Z:0978beb8-634a-4421-86b4-c7d8eb91d084" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1024" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707\",\r\n \"name\": \"sdk-Namespace-6707\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"b837b4cc-2234-4278-aa72-81d9dc054039\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6707\",\r\n \"createdAt\": \"2020-05-08T17:11:05.04Z\",\r\n \"updatedAt\": \"2020-05-08T17:11:50.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6707.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS02NzA3P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:12:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "5cd95d5e-0a41-46fa-a267-8a4613999f20_M5SN1_M5SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "fac39229-43de-4409-af48-91015e222b40" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171238Z:fac39229-43de-4409-af48-91015e222b40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1015" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707\",\r\n \"name\": \"sdk-Namespace-6707\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"b837b4cc-2234-4278-aa72-81d9dc054039\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6707\",\r\n \"createdAt\": \"2020-05-08T17:11:05.04Z\",\r\n \"updatedAt\": \"2020-05-08T17:12:14.127Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6707.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "DedicatedClusterGetCreateNamespace": [ + "sdk-Namespace-6707" + ] + }, + "Variables": { + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" + } +} \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryAlertnateNameCreateGetUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryAlertnateNameCreateGetUpdateDelete.json index 4e623abe43e9..a4ff9db00671 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryAlertnateNameCreateGetUpdateDelete.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryAlertnateNameCreateGetUpdateDelete.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-98?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "55701759-e83f-4ecf-bb70-a9d5e4a90164" + "d509934b-09de-4fb9-9a21-501502723b32" ], "accept-language": [ "en-US" @@ -15,8 +15,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" ] }, "ResponseHeaders": { @@ -24,22 +30,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:49:06 GMT" + "Mon, 11 May 2020 08:14:33 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "70524953-208f-4b97-8406-6af3af76e109" + "fddc6883-be47-4dbc-b524-5416db8b06a9" ], "x-ms-correlation-request-id": [ - "70524953-208f-4b97-8406-6af3af76e109" + "fddc6883-be47-4dbc-b524-5416db8b06a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T004906Z:70524953-208f-4b97-8406-6af3af76e109" + "WESTUS:20200511T081433Z:fddc6883-be47-4dbc-b524-5416db8b06a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +54,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "199" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98\",\r\n \"name\": \"Default-EventHub-98\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e75e9fbb-d4d0-4a74-9649-5c849ba03264" + "75861f1a-2ed9-4912-b59a-b38597f62e01" ], "accept-language": [ "en-US" @@ -75,8 +81,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,29 +96,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:49:07 GMT" + "Mon, 11 May 2020 08:14:35 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "daabb5fb-6ddf-4ec1-bd59-3d858026553e_M0CH3_M0CH3" + "eb2077cb-9944-43bc-a530-662411bdbbf8_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "c0ae2511-748e-4f86-a3e4-63e8a5aa4c9e" + "4293cb20-562f-4484-ae63-5e36b960c28b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T004908Z:c0ae2511-748e-4f86-a3e4-63e8a5aa4c9e" + "WESTUS:20200511T081435Z:4293cb20-562f-4484-ae63-5e36b960c28b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -121,7 +127,7 @@ "nosniff" ], "Content-Length": [ - "728" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,20 +136,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"name\": \"sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-6418\",\r\n \"createdAt\": \"2019-02-01T00:49:07.56Z\",\r\n \"updatedAt\": \"2019-02-01T00:49:07.56Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6418.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2282\",\r\n \"createdAt\": \"2020-05-11T08:14:35.017Z\",\r\n \"updatedAt\": \"2020-05-11T08:14:35.017Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2282.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -151,29 +157,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:49:38 GMT" + "Mon, 11 May 2020 08:15:05 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e771d716-8aec-4a9e-b08f-69ab22f44127_M0CH3_M0CH3" + "33c39ed3-4bf7-490f-a727-18cc34c12937_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "5238f3a3-2f17-495d-84e9-9f18c37397e4" + "84dd6d77-bbe5-4779-87ea-b48cff87726d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T004938Z:5238f3a3-2f17-495d-84e9-9f18c37397e4" + "WESTUS:20200511T081505Z:84dd6d77-bbe5-4779-87ea-b48cff87726d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +188,7 @@ "nosniff" ], "Content-Length": [ - "727" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -191,32 +197,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"name\": \"sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-6418\",\r\n \"createdAt\": \"2019-02-01T00:49:07.56Z\",\r\n \"updatedAt\": \"2019-02-01T00:49:36.117Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6418.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2282\",\r\n \"createdAt\": \"2020-05-11T08:14:35.017Z\",\r\n \"updatedAt\": \"2020-05-11T08:14:35.017Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2282.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "e87bfe81-2116-4adb-a8e9-571b15b2894f" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "189" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -224,29 +218,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:49:44 GMT" + "Mon, 11 May 2020 08:15:35 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "9c44de96-2e69-4131-bbe0-6e2e42314c8c_M9CH3_M9CH3" + "d80a9b1b-0db0-4b96-89fc-1627e69e8d56_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "8af08c5b-cdca-4d14-b52c-b3240250bca8" + "28c0b0f7-a9e1-4a28-9d17-7f8ead342576" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T004944Z:8af08c5b-cdca-4d14-b52c-b3240250bca8" + "WESTUS:20200511T081535Z:28c0b0f7-a9e1-4a28-9d17-7f8ead342576" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,7 +249,7 @@ "nosniff" ], "Content-Length": [ - "728" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,20 +258,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"name\": \"sdk-Namespace-1493\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1493\",\r\n \"createdAt\": \"2019-02-01T00:49:44.11Z\",\r\n \"updatedAt\": \"2019-02-01T00:49:44.11Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1493.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2282\",\r\n \"createdAt\": \"2020-05-11T08:14:35.017Z\",\r\n \"updatedAt\": \"2020-05-11T08:15:22.397Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2282.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "92a33846-7d30-48a4-b275-536c9ec67fb0" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "189" ] }, "ResponseHeaders": { @@ -285,29 +291,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:50:14 GMT" + "Mon, 11 May 2020 08:15:42 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "816e54fe-76db-4243-af7e-d523b41a7caa_M9CH3_M9CH3" + "f0b65161-1d47-4666-a0be-475a2d3e95b7_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "48" ], "x-ms-correlation-request-id": [ - "4a623f47-bca1-467c-8802-015b2989dadb" + "dd2c77f1-3d97-4864-a2cb-b1c40bd2b6c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005014Z:4a623f47-bca1-467c-8802-015b2989dadb" + "WESTUS:20200511T081542Z:dd2c77f1-3d97-4864-a2cb-b1c40bd2b6c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,7 +322,7 @@ "nosniff" ], "Content-Length": [ - "727" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,32 +331,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"name\": \"sdk-Namespace-1493\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1493\",\r\n \"createdAt\": \"2019-02-01T00:49:44.11Z\",\r\n \"updatedAt\": \"2019-02-01T00:50:10.747Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1493.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"name\": \"sdk-NS-9419\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9419\",\r\n \"createdAt\": \"2020-05-11T08:15:42.437Z\",\r\n \"updatedAt\": \"2020-05-11T08:15:42.437Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9419.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/AuthorizationRules/sdk-Authrules-6710?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9BdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy02NzEwP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "1c2e7aec-0e2e-447d-8945-a22e13b275df" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "83" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -358,29 +352,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:50:36 GMT" + "Mon, 11 May 2020 08:16:12 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ff323c99-1c48-41fe-b906-c962f392d643_M1CH3_M1CH3" + "49933cea-c304-4bac-8913-5c63e3c71ffa_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "e1acc0c2-cdbb-45f6-8848-fedb8803ecf0" + "b9d57e26-9c90-4ba0-a7cb-1ddce29a666f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005036Z:e1acc0c2-cdbb-45f6-8848-fedb8803ecf0" + "WESTUS:20200511T081613Z:b9d57e26-9c90-4ba0-a7cb-1ddce29a666f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,7 +383,7 @@ "nosniff" ], "Content-Length": [ - "362" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -398,26 +392,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/AuthorizationRules/sdk-Authrules-6710\",\r\n \"name\": \"sdk-Authrules-6710\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"name\": \"sdk-NS-9419\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9419\",\r\n \"createdAt\": \"2020-05-11T08:15:42.437Z\",\r\n \"updatedAt\": \"2020-05-11T08:15:42.437Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9419.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/AuthorizationRules/sdk-Authrules-6710?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9BdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy02NzEwP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "3f0c8bca-af72-4fcb-88f2-b587e524d339" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -425,29 +413,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:50:37 GMT" + "Mon, 11 May 2020 08:16:42 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c8f79490-9966-4d20-8fc8-cc5157c093ae_M1CH3_M1CH3" + "e857caa7-fc42-424e-b639-a4e513053350_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "e605f25a-db94-43fd-a0ed-601d02e636ad" + "9f403510-7896-4ac9-a061-bb22a9e6da3b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005037Z:e605f25a-db94-43fd-a0ed-601d02e636ad" + "WESTUS:20200511T081643Z:9f403510-7896-4ac9-a061-bb22a9e6da3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,7 +444,7 @@ "nosniff" ], "Content-Length": [ - "362" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,17 +453,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/AuthorizationRules/sdk-Authrules-6710\",\r\n \"name\": \"sdk-Authrules-6710\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"name\": \"sdk-NS-9419\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9419\",\r\n \"createdAt\": \"2020-05-11T08:15:42.437Z\",\r\n \"updatedAt\": \"2020-05-11T08:16:32.61Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9419.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/AuthorizationRules/sdk-Authrules-6710/listKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9BdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy02NzEwL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "POST", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/authorizationRules/sdk-Authrules-5213?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTUyMTM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1370cb62-5174-45f1-9904-b4f680800297" + "65f5de81-dc6e-4b21-ba4d-9ba7461e9595" ], "accept-language": [ "en-US" @@ -483,8 +471,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" ] }, "ResponseHeaders": { @@ -492,29 +486,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:50:38 GMT" + "Mon, 11 May 2020 08:16:53 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d4f37f61-5554-4fa9-b8a5-3473582e8a09_M1CH3_M1CH3" + "cb4893f4-8c7d-48e4-8c2f-c8e2be4f4039_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "8640e60b-00a0-4cd1-aae2-102245f47f2d" + "38afac97-3813-438c-9f8b-656c7848a3e0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005038Z:8640e60b-00a0-4cd1-aae2-102245f47f2d" + "WESTUS:20200511T081654Z:38afac97-3813-438c-9f8b-656c7848a3e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -523,7 +517,7 @@ "nosniff" ], "Content-Length": [ - "526" + "343" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,17 +526,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-6418.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6710;SharedAccessKey=8fbroxMLKa47Acu/ErFrncfkPOA1YkipG0prw1gHhOM=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-6418.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6710;SharedAccessKey=yGolYrj/hIydL++ZSScSPhUUrPHwPoc+Db/VerFStZM=\",\r\n \"primaryKey\": \"8fbroxMLKa47Acu/ErFrncfkPOA1YkipG0prw1gHhOM=\",\r\n \"secondaryKey\": \"yGolYrj/hIydL++ZSScSPhUUrPHwPoc+Db/VerFStZM=\",\r\n \"keyName\": \"sdk-Authrules-6710\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/authorizationRules/sdk-Authrules-5213\",\r\n \"name\": \"sdk-Authrules-5213\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/CheckNameAvailability?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9DaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-Namespace-6418\"\r\n}", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/authorizationRules/sdk-Authrules-5213?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTUyMTM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13767787-2912-4ab8-8a84-7b9dc76888a4" + "af328094-0a7f-44cd-952d-46523c07b3d7" ], "accept-language": [ "en-US" @@ -550,14 +544,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "36" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -565,29 +553,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:50:38 GMT" + "Mon, 11 May 2020 08:16:53 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "eefbfae4-8622-41d8-a139-fad67f2d1db7_M1CH3_M1CH3" + "53f0320b-5eec-4d38-81be-094529d01767_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "x-ms-correlation-request-id": [ - "48928a3c-4512-474b-8c56-2f2326924616" + "891af0b4-c2c3-4d15-bdb2-31788886de19" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005038Z:48928a3c-4512-474b-8c56-2f2326924616" + "WESTUS:20200511T081654Z:891af0b4-c2c3-4d15-bdb2-31788886de19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -596,7 +584,7 @@ "nosniff" ], "Content-Length": [ - "38" + "343" ], "Content-Type": [ "application/json; charset=utf-8" @@ -605,17 +593,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"None\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/authorizationRules/sdk-Authrules-5213\",\r\n \"name\": \"sdk-Authrules-5213\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\"\r\n }\r\n}", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/authorizationRules/sdk-Authrules-5213/listKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTUyMTMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2dad0107-c8e6-40c2-bbb5-4dfae939883f" + "63a51132-d66d-488f-8f3c-730206dbdd88" ], "accept-language": [ "en-US" @@ -623,14 +611,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "264" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -638,29 +620,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:50:54 GMT" + "Mon, 11 May 2020 08:16:54 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "9f88d0ad-0906-4c71-9755-4821d65bf3d7_M1CH3_M1CH3" + "e56813a0-7eba-439e-ba0a-d9fc1b6b17c8_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "b1bd47dc-f865-4df5-b96c-847178e7b6e2" + "6bc8a69e-95f3-4ab0-a2d1-79ccb047d725" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005054Z:b1bd47dc-f865-4df5-b96c-847178e7b6e2" + "WESTUS:20200511T081655Z:6bc8a69e-95f3-4ab0-a2d1-79ccb047d725" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,7 +651,7 @@ "nosniff" ], "Content-Length": [ - "587" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -678,17 +660,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-2282.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-5213;SharedAccessKey=vP45sPpWSmbqaeney01uUpPYh3/o/9fF1CDPt20myys=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-2282.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-5213;SharedAccessKey=lcYGQ/PFZtTTfzSgnGxpSV9oPQjc+uo3IjL2AQJ1Ch8=\",\r\n \"primaryKey\": \"vP45sPpWSmbqaeney01uUpPYh3/o/9fF1CDPt20myys=\",\r\n \"secondaryKey\": \"lcYGQ/PFZtTTfzSgnGxpSV9oPQjc+uo3IjL2AQJ1Ch8=\",\r\n \"keyName\": \"sdk-Authrules-5213\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\"\r\n }\r\n}", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/checkNameAvailability?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL2NoZWNrTmFtZUF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdk-NS-2282\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9dcd7217-27f3-473c-90c4-89baa4a242de" + "82a28243-9884-438c-bfd0-4a3ada464a26" ], "accept-language": [ "en-US" @@ -696,14 +678,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "264" + "29" ] }, "ResponseHeaders": { @@ -711,29 +693,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:54:38 GMT" + "Mon, 11 May 2020 08:16:54 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "77b95d1e-990d-4f05-bf10-e2a0f8c76cb3_M8CH3_M8CH3" + "1770c200-8d83-42e3-8c81-820835d17a18_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "8f257848-65e3-40f3-af49-6d4b1de9a2f6" + "347aab84-e9bf-4d41-bc0c-cc6f38996759" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005439Z:8f257848-65e3-40f3-af49-6d4b1de9a2f6" + "WESTUS:20200511T081655Z:347aab84-e9bf-4d41-bc0c-cc6f38996759" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -742,7 +724,7 @@ "nosniff" ], "Content-Length": [ - "587" + "38" ], "Content-Type": [ "application/json; charset=utf-8" @@ -751,17 +733,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"None\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "462e3465-bf59-4a57-8d30-39314f32e2ab" + "42ca2759-9c60-4cb6-800b-b61c2c8aa6f3" ], "accept-language": [ "en-US" @@ -769,8 +751,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "245" ] }, "ResponseHeaders": { @@ -778,29 +766,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:51:24 GMT" + "Mon, 11 May 2020 08:17:02 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b5f0f582-5fd8-4820-98f8-089b1e115baa_M6CH3_M6CH3" + "41f9a7bd-c3e5-4e09-a85f-37ce92a7e851_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "09da5b46-2f8c-4d6c-8059-55fc4599e3e6" + "a74fe1e9-6500-45ac-a698-8fc3e6c9b6fc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005125Z:09da5b46-2f8c-4d6c-8059-55fc4599e3e6" + "WESTUS:20200511T081702Z:a74fe1e9-6500-45ac-a698-8fc3e6c9b6fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,7 +797,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -818,17 +806,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4062f23d-2631-4370-8f80-f319f69332d6" + "dc29aa28-e64c-4067-994a-0a8d12fd78d9" ], "accept-language": [ "en-US" @@ -836,8 +824,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "245" ] }, "ResponseHeaders": { @@ -845,29 +839,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:51:26 GMT" + "Mon, 11 May 2020 08:20:02 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "43b33d97-4b97-4ea2-940d-ded037aed15d_M6CH3_M6CH3" + "dd6508fa-a01b-423c-8c2d-d528ed7ca868_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "57bfefb4-8603-4fa8-9e0f-68ef449c8102" + "a80db388-36fd-4d4d-97ea-f9c8164e6bb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005127Z:57bfefb4-8603-4fa8-9e0f-68ef449c8102" + "WESTUS:20200511T082002Z:a80db388-36fd-4d4d-97ea-f9c8164e6bb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -876,7 +870,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,17 +879,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "157a40f5-9c8a-46a4-9f16-e04b2e27ce63" + "c6af7af4-4ef2-4669-813c-e781eedd5808" ], "accept-language": [ "en-US" @@ -903,8 +897,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -912,29 +906,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:51:26 GMT" + "Mon, 11 May 2020 08:17:32 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "21dfc6ed-b2f8-4fcd-bae3-6772b8955fc1_M6CH3_M6CH3" + "e86aa08d-c799-428e-8a82-e7a836427a5c_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-correlation-request-id": [ - "2725e759-ca7a-443e-b6a0-fa52508ea46a" + "cd114cad-bc12-4007-abbb-4b38db6cebab" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005127Z:2725e759-ca7a-443e-b6a0-fa52508ea46a" + "WESTUS:20200511T081732Z:cd114cad-bc12-4007-abbb-4b38db6cebab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -943,7 +937,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -952,17 +946,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62d4d5e6-31eb-4ae5-b69d-f98f016aac67" + "7e8977c9-3248-4ef3-9c8f-c04fca3ab4cb" ], "accept-language": [ "en-US" @@ -970,8 +964,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -979,29 +973,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:51:36 GMT" + "Mon, 11 May 2020 08:17:33 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "cedf6072-9b88-46b0-b62b-3dc7c06f4e1b_M6CH3_M6CH3" + "cf279ecf-3790-4502-9b37-3f5b36f0a161_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "361f7ef6-2850-42bb-9b7f-f1db17ee8156" + "42159f36-2f17-4f9f-8d2c-f3786aec1930" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005137Z:361f7ef6-2850-42bb-9b7f-f1db17ee8156" + "WESTUS:20200511T081733Z:42159f36-2f17-4f9f-8d2c-f3786aec1930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1010,7 +1004,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1019,17 +1013,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf1c769a-4839-44b6-b243-91c408898def" + "7f814f4f-4811-42cf-afa0-c19c420da1a4" ], "accept-language": [ "en-US" @@ -1037,8 +1031,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1046,29 +1040,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:51:47 GMT" + "Mon, 11 May 2020 08:17:33 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f2d08cc0-fac4-4ca9-b6e9-71fc8250fbe1_M8CH3_M8CH3" + "a499aebb-093e-42e4-b532-de38ebb0eaa3_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], "x-ms-correlation-request-id": [ - "43dec773-f322-4f37-a7e5-18092e4fd453" + "723c6fdc-6ed2-4b40-a723-852672f9f849" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005147Z:43dec773-f322-4f37-a7e5-18092e4fd453" + "WESTUS:20200511T081733Z:723c6fdc-6ed2-4b40-a723-852672f9f849" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1077,7 +1071,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,17 +1080,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9303bf-50f3-46c9-a348-5e76fb1b72e2" + "2d99b38a-bc15-4b20-99c4-42e6a8f54648" ], "accept-language": [ "en-US" @@ -1104,8 +1098,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1113,29 +1107,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:51:57 GMT" + "Mon, 11 May 2020 08:17:43 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c79b1662-244a-4e94-9440-bc435a02d2b7_M6CH3_M6CH3" + "42ca78a0-8adf-4509-8c79-a5173b4ce2e2_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], "x-ms-correlation-request-id": [ - "c712114f-8ad1-49eb-a3d6-af9aa7b5ddf5" + "5a4f789c-a08a-4653-99b6-b3d6a2a354f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005158Z:c712114f-8ad1-49eb-a3d6-af9aa7b5ddf5" + "WESTUS:20200511T081743Z:5a4f789c-a08a-4653-99b6-b3d6a2a354f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1144,7 +1138,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1153,17 +1147,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62978b43-9187-4ca6-91a9-9655008a5030" + "75ce369b-9db9-4392-9e61-8758f8dafea4" ], "accept-language": [ "en-US" @@ -1171,8 +1165,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1180,29 +1174,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:52:07 GMT" + "Mon, 11 May 2020 08:17:53 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4f28adfd-77e2-4c3b-8aa2-ffbf8e1c0fb0_M6CH3_M6CH3" + "2a19ba5c-8ccb-4a0e-a140-75b849540195_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], "x-ms-correlation-request-id": [ - "18a7659b-cabf-4208-889a-597bb898fa5f" + "c9d63abe-2c48-43c2-bd7a-5f2d18bb388c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005208Z:18a7659b-cabf-4208-889a-597bb898fa5f" + "WESTUS:20200511T081753Z:c9d63abe-2c48-43c2-bd7a-5f2d18bb388c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1211,7 +1205,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1220,17 +1214,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7227e512-2e12-495c-8305-1a7be2fc4478" + "de793d50-01a5-4bf6-9ef7-7b28fd9edfe2" ], "accept-language": [ "en-US" @@ -1238,8 +1232,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1247,29 +1241,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:52:18 GMT" + "Mon, 11 May 2020 08:18:03 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f8585ebd-47fe-493b-94aa-5ec9ef986675_M8CH3_M8CH3" + "5f248ecc-f12e-46bb-a7b5-62ff7c57e46c_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], "x-ms-correlation-request-id": [ - "71ae35d1-c9de-41df-ad80-6fa45769a928" + "342e0393-8c8d-44ca-8559-2e59fa11aea1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005218Z:71ae35d1-c9de-41df-ad80-6fa45769a928" + "WESTUS:20200511T081804Z:342e0393-8c8d-44ca-8559-2e59fa11aea1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,7 +1272,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1287,17 +1281,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36f75235-5376-429a-949c-2b0f2d731d20" + "acee325a-188d-46cc-935d-62e363736b86" ], "accept-language": [ "en-US" @@ -1305,8 +1299,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1314,29 +1308,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:52:28 GMT" + "Mon, 11 May 2020 08:18:13 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e253ab92-3955-47b4-869f-e04f2db26e17_M5CH3_M5CH3" + "604552c8-b206-47d4-99f7-fd7cd540a795_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], "x-ms-correlation-request-id": [ - "e120bac9-e672-46a0-9859-efe0f85855be" + "cceec374-d0c0-4f94-bc04-d4698b6a3c74" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005228Z:e120bac9-e672-46a0-9859-efe0f85855be" + "WESTUS:20200511T081814Z:cceec374-d0c0-4f94-bc04-d4698b6a3c74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1345,7 +1339,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1354,17 +1348,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4404bea-e244-427a-9f0a-4273a0bada46" + "66b60246-3308-4b66-821d-9b705a23646a" ], "accept-language": [ "en-US" @@ -1372,8 +1366,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1381,29 +1375,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:52:38 GMT" + "Mon, 11 May 2020 08:18:23 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4499d3e1-ab44-460a-a944-887f515a4794_M5CH3_M5CH3" + "202c573d-4710-4ca3-86b8-5cbcef4206ee_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], "x-ms-correlation-request-id": [ - "daa4b44a-c345-488d-9693-be4ecea3aec0" + "7fe2e099-27f1-4821-9095-aeea2cb73264" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005238Z:daa4b44a-c345-488d-9693-be4ecea3aec0" + "WESTUS:20200511T081824Z:7fe2e099-27f1-4821-9095-aeea2cb73264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1412,7 +1406,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1421,17 +1415,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce95c324-8ae8-4862-9a15-8f1a1211b7b1" + "b96cab81-d650-415d-b6fe-c64c73d4f130" ], "accept-language": [ "en-US" @@ -1439,8 +1433,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1448,29 +1442,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:52:48 GMT" + "Mon, 11 May 2020 08:18:34 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "137f7606-525a-401e-87ac-7c1cfbff961c_M5CH3_M5CH3" + "71f706be-5997-450e-a218-1ba607c14b7b_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], "x-ms-correlation-request-id": [ - "5bf70e20-52c7-42a4-8e9c-b0b9c89c2cb3" + "a96c55d8-6067-45ba-b8c6-6995fc359c1e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005249Z:5bf70e20-52c7-42a4-8e9c-b0b9c89c2cb3" + "WESTUS:20200511T081834Z:a96c55d8-6067-45ba-b8c6-6995fc359c1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1479,7 +1473,7 @@ "nosniff" ], "Content-Length": [ - "587" + "602" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1488,17 +1482,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "602d5365-ca01-42ef-928b-8199a598d2cf" + "9f103cee-1553-4db3-9a61-f75d09c5c568" ], "accept-language": [ "en-US" @@ -1506,8 +1500,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1515,29 +1509,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:52:59 GMT" + "Mon, 11 May 2020 08:18:44 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5813b9ef-bfa3-4abb-bcd5-081074efa0fd_M5CH3_M5CH3" + "9dc10806-f512-4afc-bc27-d9c3165190fc_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], "x-ms-correlation-request-id": [ - "76b6c68b-4303-46f3-8941-09fdc02e1ba3" + "e942aaed-e836-4710-ac32-e0dd41eab473" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005259Z:76b6c68b-4303-46f3-8941-09fdc02e1ba3" + "WESTUS:20200511T081845Z:e942aaed-e836-4710-ac32-e0dd41eab473" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1546,7 +1540,7 @@ "nosniff" ], "Content-Length": [ - "626" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1555,17 +1549,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ace7bf1-6110-479f-9a78-e59195429061" + "13347a2a-2cd8-473d-88cf-4da0c49fea3e" ], "accept-language": [ "en-US" @@ -1573,8 +1567,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1582,29 +1576,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:53:09 GMT" + "Mon, 11 May 2020 08:18:54 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b16e14fb-5c5f-4fd9-aaf9-6e804ce58e35_M5CH3_M5CH3" + "3e70130b-1504-4a70-8b9a-08bad961e573_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11982" ], "x-ms-correlation-request-id": [ - "60dd79b0-9a8a-4887-85b4-59e507bfaf70" + "b8a8776a-ec12-4304-b36d-01998b63498d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005310Z:60dd79b0-9a8a-4887-85b4-59e507bfaf70" + "WESTUS:20200511T081855Z:b8a8776a-ec12-4304-b36d-01998b63498d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1613,7 +1607,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1622,17 +1616,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8aeb77fe-03c8-4b18-9ab2-dfd6ab751452" + "167eb0fe-fff7-4f4e-811b-90f7a71d3fc2" ], "accept-language": [ "en-US" @@ -1640,8 +1634,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1649,29 +1643,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:53:20 GMT" + "Mon, 11 May 2020 08:19:04 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2062110c-8ce0-4e88-b5f6-82f5874abc5c_M11CH3_M11CH3" + "58103a15-f4c3-4322-b7aa-c580b7651573_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11981" ], "x-ms-correlation-request-id": [ - "e43b98d4-b2e0-4774-b1a8-c73b296ea741" + "49157903-ce9e-438f-abf0-b71b39b4bbe7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005320Z:e43b98d4-b2e0-4774-b1a8-c73b296ea741" + "WESTUS:20200511T081905Z:49157903-ce9e-438f-abf0-b71b39b4bbe7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,7 +1674,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,17 +1683,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e46a4bac-2274-4205-95de-dde7ffac6e71" + "f54c04dc-ee62-4400-9a42-b1370cfaf81b" ], "accept-language": [ "en-US" @@ -1707,8 +1701,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1716,29 +1710,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:53:30 GMT" + "Mon, 11 May 2020 08:19:14 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fb7f8a08-e097-4ffc-b16d-8c0d7cdb3065_M0CH3_M0CH3" + "e75a163f-3e7f-4a56-8fca-070c9bd0ba7b_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11980" ], "x-ms-correlation-request-id": [ - "7d250389-60ec-4415-a064-b9127f743180" + "be841d10-5414-48dd-aad8-bd83a7fa52f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005331Z:7d250389-60ec-4415-a064-b9127f743180" + "WESTUS:20200511T081915Z:be841d10-5414-48dd-aad8-bd83a7fa52f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1747,7 +1741,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1756,17 +1750,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e0ac7619-41cf-480e-a225-97fc184a2ac6" + "f954d46b-e4db-4229-9cd5-9cb580e6e3bf" ], "accept-language": [ "en-US" @@ -1774,8 +1768,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1783,29 +1777,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:53:40 GMT" + "Mon, 11 May 2020 08:19:25 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "65e4fc7b-fdba-4d0a-a9f4-30cfb23680ca_M0CH3_M0CH3" + "440d811e-fbce-4d95-9f40-2cedb003172a_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11979" ], "x-ms-correlation-request-id": [ - "183af94f-27b6-44a7-8f51-9e80b411a439" + "4edf9978-fc38-457d-860e-1ed252176823" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005341Z:183af94f-27b6-44a7-8f51-9e80b411a439" + "WESTUS:20200511T081925Z:4edf9978-fc38-457d-860e-1ed252176823" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1814,7 +1808,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1823,17 +1817,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "336d9aad-b9b1-4705-a421-f2323b0b2993" + "303c23fa-ebd6-4834-af94-ac21f93571d1" ], "accept-language": [ "en-US" @@ -1841,8 +1835,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1850,29 +1844,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:53:50 GMT" + "Mon, 11 May 2020 08:19:35 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fda4c969-1862-40cc-86b6-8e689e953d65_M5CH3_M5CH3" + "fd4e63bf-5546-4dde-97d8-0dd58405dc26_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11978" ], "x-ms-correlation-request-id": [ - "12eca0ee-a806-45d9-9877-1dda341d8ed7" + "a51ca837-23b3-4d65-a671-a1c26f079631" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005351Z:12eca0ee-a806-45d9-9877-1dda341d8ed7" + "WESTUS:20200511T081935Z:a51ca837-23b3-4d65-a671-a1c26f079631" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,7 +1875,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1890,17 +1884,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64d27bc4-98a2-44e5-a06c-aa700053ea6e" + "ca9e8385-dcb7-4f2d-99b7-c233f0f75bfd" ], "accept-language": [ "en-US" @@ -1908,8 +1902,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1917,29 +1911,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:54:00 GMT" + "Mon, 11 May 2020 08:19:46 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d862f672-d6a3-4133-8557-cfeffe1699da_M5CH3_M5CH3" + "422971a2-2f2a-4bfd-b2c6-fc1211b9161d_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11977" ], "x-ms-correlation-request-id": [ - "c9af96d9-e11b-4eef-b84e-dfe797c49b17" + "83dd732b-cfb6-401e-8c84-e1aa317c804b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005401Z:c9af96d9-e11b-4eef-b84e-dfe797c49b17" + "WESTUS:20200511T081946Z:83dd732b-cfb6-401e-8c84-e1aa317c804b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1948,7 +1942,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1957,17 +1951,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59c2bda6-4c75-4c2b-96ff-f62873c807b9" + "b928a007-4275-46aa-8e7f-2b7c8a9b8a9a" ], "accept-language": [ "en-US" @@ -1975,8 +1969,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1984,29 +1978,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:54:11 GMT" + "Mon, 11 May 2020 08:19:55 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c2510fad-6d29-4b9a-b809-8b928410dad1_M5CH3_M5CH3" + "9df4d798-ee79-4a29-8331-0b7cb19cf5e1_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11976" ], "x-ms-correlation-request-id": [ - "4681d535-30a0-4f29-8223-e43d00f98547" + "57e8ee80-e8a3-401b-a4be-18c74e10fa68" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005411Z:4681d535-30a0-4f29-8223-e43d00f98547" + "WESTUS:20200511T081956Z:57e8ee80-e8a3-401b-a4be-18c74e10fa68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2015,7 +2009,7 @@ "nosniff" ], "Content-Length": [ - "587" + "440" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2024,17 +2018,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5deaa5a-ec24-47bd-914e-bc98addf2f50" + "5d0c431b-29f0-450a-88af-f99fc0f3b3e9" ], "accept-language": [ "en-US" @@ -2042,8 +2036,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2051,29 +2045,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:54:21 GMT" + "Mon, 11 May 2020 08:20:12 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "63252b85-6eac-4ca2-aa1e-ac680aa82e8c_M0CH3_M0CH3" + "15fb0679-424a-4078-abb6-cde8a1221302_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11975" ], "x-ms-correlation-request-id": [ - "56dcca42-d63f-4ccf-b518-4c6207ba6567" + "6726e0db-594b-4c44-b677-105a8022abc9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005422Z:56dcca42-d63f-4ccf-b518-4c6207ba6567" + "WESTUS:20200511T082013Z:6726e0db-594b-4c44-b677-105a8022abc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2082,7 +2076,7 @@ "nosniff" ], "Content-Length": [ - "445" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2091,17 +2085,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dad89801-e834-4cb4-96c7-cc0dc617d387" + "b59aefee-abea-450d-b6a6-dcbb0ab324d1" ], "accept-language": [ "en-US" @@ -2109,8 +2103,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2118,29 +2112,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:54:49 GMT" + "Mon, 11 May 2020 08:20:22 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1995bccb-79b2-4b40-a8c5-ac991538195d_M0CH3_M0CH3" + "85632d3f-1146-4456-a450-df87471e2f60_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11974" ], "x-ms-correlation-request-id": [ - "5682fe1f-442b-4273-a762-47833d7a5f61" + "1da1d741-92ec-4dc0-947a-5429113c64fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005449Z:5682fe1f-442b-4273-a762-47833d7a5f61" + "WESTUS:20200511T082023Z:1da1d741-92ec-4dc0-947a-5429113c64fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2149,7 +2143,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2158,17 +2152,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b452d6ce-859d-475b-8038-e6a51814e8a9" + "3d35177a-4959-4967-9b81-137fac0da2e4" ], "accept-language": [ "en-US" @@ -2176,8 +2170,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2185,29 +2179,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:54:59 GMT" + "Mon, 11 May 2020 08:20:32 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c274eb4b-0181-40ca-890e-ba51389b2944_M0CH3_M0CH3" + "4de20dbc-bc79-419f-b292-091d9085dc3e_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11973" ], "x-ms-correlation-request-id": [ - "405a0d51-4994-4142-8d22-0323d4e8201b" + "5e06350c-a14e-4d43-9444-da2c0c1d0ce9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005459Z:405a0d51-4994-4142-8d22-0323d4e8201b" + "WESTUS:20200511T082033Z:5e06350c-a14e-4d43-9444-da2c0c1d0ce9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2216,7 +2210,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2225,17 +2219,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7085652c-aea1-4574-8547-f18e184a0771" + "00219735-7a4b-4adf-ad53-289511da7341" ], "accept-language": [ "en-US" @@ -2243,8 +2237,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2252,29 +2246,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:55:09 GMT" + "Mon, 11 May 2020 08:20:42 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4f4427c2-4d60-4580-9e5c-2828749b6eb0_M0CH3_M0CH3" + "4c402f28-48f7-46e9-a1a5-c5837010f900_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11972" ], "x-ms-correlation-request-id": [ - "71094afb-677a-4e6f-8f5d-66e8d6a30058" + "21213b76-014b-4495-a25c-62612af1ed3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005509Z:71094afb-677a-4e6f-8f5d-66e8d6a30058" + "WESTUS:20200511T082043Z:21213b76-014b-4495-a25c-62612af1ed3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2283,7 +2277,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2292,17 +2286,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43fa239e-e247-4650-8a59-449e579a72b9" + "8998e507-9bf0-4ab6-b34b-7404c835bdb5" ], "accept-language": [ "en-US" @@ -2310,8 +2304,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2319,29 +2313,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:55:19 GMT" + "Mon, 11 May 2020 08:20:52 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "13065ee8-4c5d-44f8-b7c1-b3931bd20dcd_M0CH3_M0CH3" + "63119e62-607b-4866-8ccd-965b3cf42910_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11971" ], "x-ms-correlation-request-id": [ - "ba7778b3-e4ea-43ed-a7c4-12e1e7e83d31" + "73c42204-cdd7-4d90-9176-8cbdc6a990b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005520Z:ba7778b3-e4ea-43ed-a7c4-12e1e7e83d31" + "WESTUS:20200511T082053Z:73c42204-cdd7-4d90-9176-8cbdc6a990b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2350,7 +2344,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2359,17 +2353,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c2da882-19cb-40db-bbf9-75411310a9bb" + "943b7489-45a5-4b75-9540-b81b8de47444" ], "accept-language": [ "en-US" @@ -2377,8 +2371,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2386,29 +2380,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:55:30 GMT" + "Mon, 11 May 2020 08:21:02 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "cfe0e56d-5fb4-499d-96d6-04502cffc645_M0CH3_M0CH3" + "ce766bb4-a5ad-4e7e-a533-2b04cbc9b2db_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11970" ], "x-ms-correlation-request-id": [ - "b372de5a-dc79-4288-85a9-0f4251137896" + "d4a1606f-749e-4834-88b9-5368cdd7757a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005530Z:b372de5a-dc79-4288-85a9-0f4251137896" + "WESTUS:20200511T082103Z:d4a1606f-749e-4834-88b9-5368cdd7757a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2417,7 +2411,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2426,17 +2420,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2acd4869-5740-42a5-af94-fa7e6a1e818f" + "51de2554-3c96-406d-b659-aac0a146a4a0" ], "accept-language": [ "en-US" @@ -2444,8 +2438,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2453,29 +2447,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:55:40 GMT" + "Mon, 11 May 2020 08:21:12 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "77a6b3b8-1381-4906-ad2d-e41a091ebfc9_M3CH3_M3CH3" + "b14a4530-e6b6-4082-a4b5-48eb9319a376_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11969" ], "x-ms-correlation-request-id": [ - "6fb587f4-9dac-4e21-a31b-a5a0f2b3548d" + "9356db4a-0030-4a06-89c2-0956d28cd0e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005540Z:6fb587f4-9dac-4e21-a31b-a5a0f2b3548d" + "WESTUS:20200511T082113Z:9356db4a-0030-4a06-89c2-0956d28cd0e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2484,7 +2478,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2493,17 +2487,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c075ec0-2fcc-4841-b214-7e4bce75b824" + "ce64a12b-1925-4e34-80c0-c86a8a242b04" ], "accept-language": [ "en-US" @@ -2511,8 +2505,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2520,29 +2514,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:55:50 GMT" + "Mon, 11 May 2020 08:21:22 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7ffeac3a-212a-4ae1-afe0-1f9eafcd7d05_M1CH3_M1CH3" + "ad5180a7-2bc2-4b5a-8ef0-44e0d26428b5_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11968" ], "x-ms-correlation-request-id": [ - "5ac8ddf3-b96a-4330-ae69-f4f86aeac7ab" + "145002e7-04ce-49a4-924c-6e443bb26b9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005550Z:5ac8ddf3-b96a-4330-ae69-f4f86aeac7ab" + "WESTUS:20200511T082123Z:145002e7-04ce-49a4-924c-6e443bb26b9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2551,7 +2545,7 @@ "nosniff" ], "Content-Length": [ - "587" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2560,17 +2554,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "342720a4-1a67-4c86-bc88-108ab4736979" + "cc7dc25f-9922-4364-9170-6dabd6cf98ec" ], "accept-language": [ "en-US" @@ -2578,8 +2572,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2587,29 +2581,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:56:00 GMT" + "Mon, 11 May 2020 08:21:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fafdb433-2839-4776-ab3a-2b0262b1fcd0_M2CH3_M2CH3" + "d65e050b-f348-452d-8d05-26b285a5280e_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11967" ], "x-ms-correlation-request-id": [ - "74591ffa-ca35-46bc-9d22-ceeb0e932167" + "89b7cf03-42c9-442b-a224-b320d1b5cc06" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005600Z:74591ffa-ca35-46bc-9d22-ceeb0e932167" + "WESTUS:20200511T082139Z:89b7cf03-42c9-442b-a224-b320d1b5cc06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2618,7 +2612,7 @@ "nosniff" ], "Content-Length": [ - "587" + "602" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2627,17 +2621,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a2c599-9fa9-49a5-be2c-d1a0fb2d5877" + "2cf74b73-7776-4134-9ead-b99ea8169e1f" ], "accept-language": [ "en-US" @@ -2645,8 +2639,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2654,29 +2648,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:56:10 GMT" + "Mon, 11 May 2020 08:17:32 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "883ee0eb-d741-46fa-bf24-23aea1b8a34f_M2CH3_M2CH3" + "d8f179dc-923f-46cd-a940-68fd9543beea_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11993" ], "x-ms-correlation-request-id": [ - "0fc40bd8-097b-43f2-94dd-e225a0420e35" + "4dc34e98-9df5-4d06-a373-011254bcc9ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005611Z:0fc40bd8-097b-43f2-94dd-e225a0420e35" + "WESTUS:20200511T081732Z:4dc34e98-9df5-4d06-a373-011254bcc9ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2685,7 +2679,7 @@ "nosniff" ], "Content-Length": [ - "587" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2694,17 +2688,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f626e2e-3ad5-4978-aece-409c7b06266e" + "22b47ff6-0753-4244-a99c-38d55d9cbeb0" ], "accept-language": [ "en-US" @@ -2712,8 +2706,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2721,29 +2715,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:56:20 GMT" + "Mon, 11 May 2020 08:21:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "da5c966d-8a8d-4acd-84db-7a6dd33cc197_M1CH3_M1CH3" + "96fae077-0a13-4baa-999c-d09fa5b6ff9c_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11966" ], "x-ms-correlation-request-id": [ - "2b35edc3-9f9f-4c23-aec6-93476b0e4dc4" + "e1abeb2c-8c2c-4316-a0c2-0dabd4070d6b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005621Z:2b35edc3-9f9f-4c23-aec6-93476b0e4dc4" + "WESTUS:20200511T082149Z:e1abeb2c-8c2c-4316-a0c2-0dabd4070d6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2752,7 +2746,7 @@ "nosniff" ], "Content-Length": [ - "587" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2761,17 +2755,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7988e59-dd0b-481d-9684-de562e0a6cb0" + "fd7cacdb-6c61-40de-bfc2-4052f1c50080" ], "accept-language": [ "en-US" @@ -2779,8 +2773,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2788,29 +2782,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:56:30 GMT" + "Mon, 11 May 2020 08:21:59 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "57bcd53e-8b48-4fe3-b8da-a84a29269583_M9CH3_M9CH3" + "4323aa6c-0805-4d5a-b712-177739101710_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11965" ], "x-ms-correlation-request-id": [ - "132ac5bb-aaf2-4823-bdc7-26f4982cd897" + "944a7d39-8395-490e-831d-4ae95000d6a7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005631Z:132ac5bb-aaf2-4823-bdc7-26f4982cd897" + "WESTUS:20200511T082159Z:944a7d39-8395-490e-831d-4ae95000d6a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2819,7 +2813,7 @@ "nosniff" ], "Content-Length": [ - "587" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2828,17 +2822,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18c44742-0547-45c7-bf2d-91472279eb2a" + "a004a51b-56ab-4330-8908-496a76461498" ], "accept-language": [ "en-US" @@ -2846,8 +2840,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2855,29 +2849,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:56:42 GMT" + "Mon, 11 May 2020 08:22:09 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "0da75e54-e746-4701-a8ae-6d49991f28e5_M2CH3_M2CH3" + "eacb13a3-cd1c-4b00-82b9-fdd79e90b802_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11964" ], "x-ms-correlation-request-id": [ - "dbf46784-3e92-4371-a433-d8947073c878" + "03250d46-9e60-4b0f-a493-f6b156327d7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005642Z:dbf46784-3e92-4371-a433-d8947073c878" + "WESTUS:20200511T082210Z:03250d46-9e60-4b0f-a493-f6b156327d7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2886,7 +2880,7 @@ "nosniff" ], "Content-Length": [ - "626" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2895,17 +2889,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10084ed4-0bfe-4c26-8191-2ce569e027de" + "42a9aeeb-27ba-4c86-8ead-ff722e7bfa38" ], "accept-language": [ "en-US" @@ -2913,8 +2907,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2922,29 +2916,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:51:24 GMT" + "Mon, 11 May 2020 08:22:19 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "da95eea7-b166-409c-a710-0e25d3e5f0e0_M6CH3_M6CH3" + "00f6856f-b98e-4462-a181-0019845280f8_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11963" ], "x-ms-correlation-request-id": [ - "227a5fc9-1eb0-4945-85d4-d4be4b96c514" + "c6a17320-3c5c-43ca-b1b9-aaca455e649f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005125Z:227a5fc9-1eb0-4945-85d4-d4be4b96c514" + "WESTUS:20200511T082220Z:c6a17320-3c5c-43ca-b1b9-aaca455e649f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2953,7 +2947,7 @@ "nosniff" ], "Content-Length": [ - "589" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2962,17 +2956,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "895f6b0c-8af4-4fd6-a5c3-1a10aa9bdb40" + "a0c21479-18ef-4088-950e-c103344bf50b" ], "accept-language": [ "en-US" @@ -2980,8 +2974,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2989,29 +2983,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:56:52 GMT" + "Mon, 11 May 2020 08:22:30 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fa6bf316-fef2-49cc-be28-f0fbe70872f9_M9CH3_M9CH3" + "8a9ae01e-19b0-48d3-85bd-a2da659067f1_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11962" ], "x-ms-correlation-request-id": [ - "f89eba9d-3e74-4d29-af2e-59583dc8a1a2" + "e67a97aa-ea24-473b-ad08-944a19e71ddc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005653Z:f89eba9d-3e74-4d29-af2e-59583dc8a1a2" + "WESTUS:20200511T082230Z:e67a97aa-ea24-473b-ad08-944a19e71ddc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3020,7 +3014,7 @@ "nosniff" ], "Content-Length": [ - "589" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3029,17 +3023,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9f526d5-b93e-489d-9c31-515ccde9f4e4" + "d8ee8aa8-2475-4640-b94b-681ca5b305ba" ], "accept-language": [ "en-US" @@ -3047,8 +3041,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3056,29 +3050,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:57:02 GMT" + "Mon, 11 May 2020 08:22:40 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4b478233-40ff-43da-9cc7-cbd3a5447fa9_M6CH3_M6CH3" + "58bd011a-26ce-4760-88ff-79b5bc4943d8_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11961" ], "x-ms-correlation-request-id": [ - "65c3c061-b8e8-4d68-b7eb-1cecf8f219db" + "7f9086b8-5760-48a2-9964-ad3029f198e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005703Z:65c3c061-b8e8-4d68-b7eb-1cecf8f219db" + "WESTUS:20200511T082240Z:7f9086b8-5760-48a2-9964-ad3029f198e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3087,7 +3081,7 @@ "nosniff" ], "Content-Length": [ - "589" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3096,17 +3090,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36876e51-d81f-4645-acf8-062b46e29cc0" + "98d835e5-f674-4797-a1f8-60a532f0d393" ], "accept-language": [ "en-US" @@ -3114,8 +3108,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3123,29 +3117,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:57:12 GMT" + "Mon, 11 May 2020 08:22:50 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ad88d509-8c57-4338-beb3-c354b206f45b_M6CH3_M6CH3" + "2508b65b-9216-4e27-a813-882b8a4fee50_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11960" ], "x-ms-correlation-request-id": [ - "38324610-c582-44ec-ae7d-5b26dafffa2f" + "5c44e58e-f3b8-4a06-8b28-69c06591d04e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005713Z:38324610-c582-44ec-ae7d-5b26dafffa2f" + "WESTUS:20200511T082250Z:5c44e58e-f3b8-4a06-8b28-69c06591d04e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3154,7 +3148,7 @@ "nosniff" ], "Content-Length": [ - "589" + "565" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3163,17 +3157,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282\",\r\n \"alternateName\": \"sdk-DisasterRecovery-4073\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7870f5e8-8c51-43b8-b803-f89470abb936" + "c393ede7-a499-4895-9b9e-4c818b9c0d69" ], "accept-language": [ "en-US" @@ -3181,8 +3175,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3190,29 +3184,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:57:23 GMT" + "Mon, 11 May 2020 08:23:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1449766b-f917-4989-b3ef-e618c5aa7817_M6CH3_M6CH3" + "48a503f6-ddae-468e-9dca-54c13a2c746f_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11959" ], "x-ms-correlation-request-id": [ - "73db9cfe-9278-468e-96c6-7b59695d8e7f" + "44ee0bd7-c2d2-4315-a35d-3a03e5e4f5b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005724Z:73db9cfe-9278-468e-96c6-7b59695d8e7f" + "WESTUS:20200511T082300Z:44ee0bd7-c2d2-4315-a35d-3a03e5e4f5b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3221,7 +3215,7 @@ "nosniff" ], "Content-Length": [ - "589" + "396" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3230,17 +3224,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282/authorizationRules/sdk-Authrules-5213?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTUyMTM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f99c6a24-ad65-4785-ae6b-c213d1ad5e9a" + "4c9f9340-623b-4e39-95e5-fa488a8dfb12" ], "accept-language": [ "en-US" @@ -3248,8 +3242,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3257,29 +3251,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:57:34 GMT" + "Mon, 11 May 2020 08:17:32 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a166c082-88fc-4bda-8445-0b0fd7a1ec53_M6CH3_M6CH3" + "583c3b06-d9b8-4b7a-ab67-8000a605c153_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11992" ], "x-ms-correlation-request-id": [ - "ac8baaae-5b4c-477b-be84-9d15c5bf365c" + "86a4f151-055a-4b20-a7f1-73fcb558b2b8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005734Z:ac8baaae-5b4c-477b-be84-9d15c5bf365c" + "WESTUS:20200511T081732Z:86a4f151-055a-4b20-a7f1-73fcb558b2b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3288,7 +3282,7 @@ "nosniff" ], "Content-Length": [ - "589" + "379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3297,17 +3291,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282/authorizationRules/sdk-Authrules-5213\",\r\n \"name\": \"sdk-Authrules-5213\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282/authorizationRules/sdk-Authrules-5213/listKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTUyMTMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0b5eb18-0256-4344-9be3-ebf371a240bb" + "7e2c205a-c8fc-45d8-a824-ecc843ea0f86" ], "accept-language": [ "en-US" @@ -3315,8 +3309,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3324,29 +3318,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:57:43 GMT" + "Mon, 11 May 2020 08:17:33 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7f1b34b5-8945-44da-9379-21afd0cefa67_M6CH3_M6CH3" + "f46a518c-5a37-4e19-9e85-3f5c8274b10a_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "71074c6c-67f8-4729-a886-bd01241f57a3" + "5ba41d36-20a4-4d65-baf6-47ff1748a275" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005744Z:71074c6c-67f8-4729-a886-bd01241f57a3" + "WESTUS:20200511T081733Z:5ba41d36-20a4-4d65-baf6-47ff1748a275" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3355,7 +3349,7 @@ "nosniff" ], "Content-Length": [ - "589" + "522" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3364,17 +3358,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"aliasPrimaryConnectionString\": \"Endpoint=sb://sdk-ns-2282.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-5213;SharedAccessKey=vP45sPpWSmbqaeney01uUpPYh3/o/9fF1CDPt20myys=\",\r\n \"aliasSecondaryConnectionString\": \"Endpoint=sb://sdk-ns-2282.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-5213;SharedAccessKey=lcYGQ/PFZtTTfzSgnGxpSV9oPQjc+uo3IjL2AQJ1Ch8=\",\r\n \"primaryKey\": \"vP45sPpWSmbqaeney01uUpPYh3/o/9fF1CDPt20myys=\",\r\n \"secondaryKey\": \"lcYGQ/PFZtTTfzSgnGxpSV9oPQjc+uo3IjL2AQJ1Ch8=\",\r\n \"keyName\": \"sdk-Authrules-5213\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/disasterRecoveryConfigs/sdk-NS-2282/breakPairing?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyL2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyL2JyZWFrUGFpcmluZz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "810a5099-31a8-41b1-b19f-c07a52e976cb" + "9413f37e-6169-4391-8a0e-d92c0bb074ba" ], "accept-language": [ "en-US" @@ -3382,8 +3376,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3391,29 +3385,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:57:53 GMT" + "Mon, 11 May 2020 08:18:34 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3b01bd2c-0b9e-465e-a798-284d88f325e8_M10CH3_M10CH3" + "fb17df00-8d61-462a-b030-be5770d2770c_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "de48ad81-2318-4214-b014-654c58f37dd3" + "3690fc2b-0f29-400f-8599-eda5d4f1ba9d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005754Z:de48ad81-2318-4214-b014-654c58f37dd3" + "WESTUS:20200511T081835Z:3690fc2b-0f29-400f-8599-eda5d4f1ba9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3422,26 +3416,23 @@ "nosniff" ], "Content-Length": [ - "589" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418\",\r\n \"alternateName\": \"sdk-DisasterRecovery-8730\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282/failover?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyL2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ef3402f-abd7-40bb-8dff-f8887d661090" + "6287938a-8834-4992-abbc-3c279a23e47a" ], "accept-language": [ "en-US" @@ -3449,8 +3440,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3458,29 +3449,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:58:03 GMT" + "Mon, 11 May 2020 08:21:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "767d9a0b-d4a7-4a5b-83ce-0a0f0ecb1bd6_M10CH3_M10CH3" + "34f652ea-dc22-4ada-a5a4-20e9f949d6a4_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "b7ddd054-52df-445b-9421-7851ca58e1ec" + "5f493980-4780-49a8-a4e8-0edc8f7a535b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005804Z:b7ddd054-52df-445b-9421-7851ca58e1ec" + "WESTUS:20200511T082139Z:5f493980-4780-49a8-a4e8-0edc8f7a535b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3489,26 +3480,23 @@ "nosniff" ], "Content-Length": [ - "400" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d9a15a4-2df7-445f-9e6d-85ce5743f6be" + "aa5d93a0-364d-4fa0-8732-dd685eda1e14" ], "accept-language": [ "en-US" @@ -3516,8 +3504,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3525,29 +3513,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:58:13 GMT" + "Mon, 11 May 2020 08:23:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "6788e25f-b92c-4342-a7ad-12522be126aa_M7CH3_M7CH3" + "681a46d2-e063-44b5-8626-22b510357d3a_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11958" ], "x-ms-correlation-request-id": [ - "88d42591-3c0d-4440-bcc6-758d32f3f04b" + "4f33eeb0-7299-4689-bd54-530143e81475" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005814Z:88d42591-3c0d-4440-bcc6-758d32f3f04b" + "WESTUS:20200511T082301Z:4f33eeb0-7299-4689-bd54-530143e81475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3556,7 +3544,7 @@ "nosniff" ], "Content-Length": [ - "401" + "408" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3565,17 +3553,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282\",\r\n \"name\": \"sdk-NS-2282\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418/AuthorizationRules/sdk-Authrules-6710?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTgvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjcxMD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/disasterRecoveryConfigs/sdk-NS-2282?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5L2Rpc2FzdGVyUmVjb3ZlcnlDb25maWdzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6e25b91-e692-46c5-b569-aa36c17bcea9" + "0605f5b9-09cb-467e-85f5-cc5ebcc82c1e" ], "accept-language": [ "en-US" @@ -3583,8 +3571,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3592,29 +3580,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:51:25 GMT" + "Mon, 11 May 2020 08:23:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4541f1db-bd94-4724-a180-a5ecae61ca19_M6CH3_M6CH3" + "67487a0b-8324-4bef-a32a-bc836bcc1357_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "a924a1fb-80a0-435d-98d5-95987c6833b4" + "23cc0ed0-0dcf-45f7-9f09-45b9edd79f45" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005126Z:a924a1fb-80a0-435d-98d5-95987c6833b4" + "WESTUS:20200511T082301Z:23cc0ed0-0dcf-45f7-9f09-45b9edd79f45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3623,26 +3611,23 @@ "nosniff" ], "Content-Length": [ - "405" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418/AuthorizationRules/sdk-Authrules-6710\",\r\n \"name\": \"sdk-Authrules-6710\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418/AuthorizationRules/sdk-Authrules-6710/listKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTgvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNjcxMC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy0yMjgyP2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "717a90df-f860-4f23-be75-b2f551f865ef" + "814556ba-c44b-4b5f-a55f-892dab590c92" ], "accept-language": [ "en-US" @@ -3650,8 +3635,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3659,96 +3644,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:51:26 GMT" + "Mon, 11 May 2020 08:23:01 GMT" ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "bc408de8-f15f-4ade-9473-4b7f7e8085c9_M6CH3_M6CH3" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "ff7a1cc2-2664-4c7f-aa0a-7f3939f28a78" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190201T005127Z:ff7a1cc2-2664-4c7f-aa0a-7f3939f28a78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "536" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"aliasPrimaryConnectionString\": \"Endpoint=sb://sdk-namespace-6418.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6710;SharedAccessKey=8fbroxMLKa47Acu/ErFrncfkPOA1YkipG0prw1gHhOM=\",\r\n \"aliasSecondaryConnectionString\": \"Endpoint=sb://sdk-namespace-6418.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-6710;SharedAccessKey=yGolYrj/hIydL++ZSScSPhUUrPHwPoc+Db/VerFStZM=\",\r\n \"primaryKey\": \"8fbroxMLKa47Acu/ErFrncfkPOA1YkipG0prw1gHhOM=\",\r\n \"secondaryKey\": \"yGolYrj/hIydL++ZSScSPhUUrPHwPoc+Db/VerFStZM=\",\r\n \"keyName\": \"sdk-Authrules-6710\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6418/disasterRecoveryConfigs/sdk-Namespace-6418/breakPairing?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNjQxOC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTgvYnJlYWtQYWlyaW5nP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b2804d63-ac0b-4fb5-a28d-51adbf2bf95d" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Feb 2019 00:52:59 GMT" - ], - "Pragma": [ - "no-cache" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-2282/operationresults/sdk-NS-2282?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "321edfe6-b5ab-44af-a87f-d3a93e97229d_M5CH3_M5CH3" + "7415c419-50a1-4477-abbe-52db4e02e373_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], "x-ms-correlation-request-id": [ - "a3868d17-dc2a-4cbe-81fb-e8b948ab7119" + "cdd26ba8-a155-4fff-87c1-c60f739b2b54" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005300Z:a3868d17-dc2a-4cbe-81fb-e8b948ab7119" + "WESTUS:20200511T082301Z:cdd26ba8-a155-4fff-87c1-c60f739b2b54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3764,16 +3685,16 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418/failover?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTgvZmFpbG92ZXI/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTgvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OUy05NDE5P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f354acc2-46d1-4e48-ba3e-59014196a9b1" + "50d65c39-f6aa-4a76-8dd4-430ce3acf7d6" ], "accept-language": [ "en-US" @@ -3781,8 +3702,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3790,29 +3711,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:56:42 GMT" + "Mon, 11 May 2020 08:23:02 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-98/providers/Microsoft.EventHub/namespaces/sdk-NS-9419/operationresults/sdk-NS-9419?api-version=2018-01-01-preview" + ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bb632a7b-01c8-443f-9043-e55c0645e814_M1CH3_M1CH3" + "36bb3123-bc57-4602-b6f6-667578c19438_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "d4058113-9c5a-4237-8292-75fd31c16522" + "13037cfe-2f75-4a55-bee7-823b71e5420a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005643Z:d4058113-9c5a-4237-8292-75fd31c16522" + "WESTUS:20200511T082302Z:13037cfe-2f75-4a55-bee7-823b71e5420a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3828,83 +3752,16 @@ ] }, "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5d42a2b4-1609-46ce-9cf7-56c5dafd147c" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Fri, 01 Feb 2019 00:58:15 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "565c3a30-fda6-4450-91ab-01577e45a664_M7CH3_M7CH3" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-correlation-request-id": [ - "59e16e2c-523b-464f-a8c6-db4af151ddea" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190201T005815Z:59e16e2c-523b-464f-a8c6-db4af151ddea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "413" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1493/disasterRecoveryConfigs/sdk-Namespace-6418?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMTQ5My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstTmFtZXNwYWNlLTY0MTg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-98?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItOTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14c025ae-68f7-4496-a0a3-077c47798d34" + "7f1d9d63-3720-4676-878d-89c789ad5486" ], "accept-language": [ "en-US" @@ -3912,8 +3769,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, "ResponseHeaders": { @@ -3921,29 +3778,28 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:58:15 GMT" + "Mon, 11 May 2020 08:23:01 GMT" ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "6056ba19-c70c-4d20-9028-1af7010a0171_M10CH3_M10CH3" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ5OC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2015-11-01" ], - "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], + "x-ms-request-id": [ + "43de1193-a35a-4b34-9e9d-695eef5fcd5e" + ], "x-ms-correlation-request-id": [ - "c50d60ab-ddc8-4ae9-90cb-b41c07270f99" + "43de1193-a35a-4b34-9e9d-695eef5fcd5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T005815Z:c50d60ab-ddc8-4ae9-90cb-b41c07270f99" + "WESTUS:20200511T082302Z:43de1193-a35a-4b34-9e9d-695eef5fcd5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3959,18 +3815,19 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 } ], "Names": { "DisasterRecoveryAlertnateNameCreateGetUpdateDelete": [ - "sdk-Namespace-6418", - "sdk-Namespace-1493", - "sdk-Authrules-6710", - "sdk-DisasterRecovery-8730" + "Default-EventHub-98", + "sdk-NS-2282", + "sdk-NS-9419", + "sdk-Authrules-5213", + "sdk-DisasterRecovery-4073" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryCreateGetUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryCreateGetUpdateDelete.json index fbf589ad6b30..7e37a3dcb123 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryCreateGetUpdateDelete.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/DisasterRecoveryCreateGetUpdateDelete.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-3593?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"South Central US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9ab165bf-0d9c-4a89-9b06-f374306e985f" + "bc01196d-74f4-41de-a43d-eab6467b650c" ], "accept-language": [ "en-US" @@ -15,8 +15,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" ] }, "ResponseHeaders": { @@ -24,22 +30,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:28:06 GMT" + "Mon, 11 May 2020 08:23:04 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "45b80c58-082e-4b8b-a99b-6e357e91e631" + "aa3f959a-f107-4e37-8f01-5299dd4b3c82" ], "x-ms-correlation-request-id": [ - "45b80c58-082e-4b8b-a99b-6e357e91e631" + "aa3f959a-f107-4e37-8f01-5299dd4b3c82" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002806Z:45b80c58-082e-4b8b-a99b-6e357e91e631" + "WESTUS:20200511T082305Z:aa3f959a-f107-4e37-8f01-5299dd4b3c82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +54,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "203" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593\",\r\n \"name\": \"Default-EventHub-3593\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjM/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6bbd8b17-6f0e-46b7-8961-dc15bd819142" + "d53641fd-7ddc-4e5a-9d57-2d5cdcbd8ddc" ], "accept-language": [ "en-US" @@ -75,8 +81,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,29 +96,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:28:07 GMT" + "Mon, 11 May 2020 08:23:07 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b8b0470c-ae26-4fd0-9f46-e1409c8e6c5b_M3CH3_M3CH3" + "0c8c17a4-bfd1-4a41-9e96-07959eab213c_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "2c4dea1e-5e64-4b68-99d7-76d244d3fed6" + "a3b40698-f65e-472f-af49-c453288ac00c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002808Z:2c4dea1e-5e64-4b68-99d7-76d244d3fed6" + "WESTUS:20200511T082307Z:a3b40698-f65e-472f-af49-c453288ac00c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -121,7 +127,7 @@ "nosniff" ], "Content-Length": [ - "728" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -130,20 +136,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"name\": \"sdk-Namespace-3870\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3870\",\r\n \"createdAt\": \"2019-02-01T00:28:07.39Z\",\r\n \"updatedAt\": \"2019-02-01T00:28:07.39Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3870.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"name\": \"sdk-NS-7423\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7423\",\r\n \"createdAt\": \"2020-05-11T08:23:07.147Z\",\r\n \"updatedAt\": \"2020-05-11T08:23:07.147Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7423.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjM/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -151,29 +157,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:28:38 GMT" + "Mon, 11 May 2020 08:23:36 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b4e62287-ceb3-483e-948c-6acda952c5a8_M4CH3_M4CH3" + "9d678197-3684-4652-9ce7-5e5a3bcb8182_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11999" ], "x-ms-correlation-request-id": [ - "c66dea17-2015-4fa0-baef-89d20ace9d77" + "b87d59a8-45fe-45c3-987f-29b46e4c6b8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002838Z:c66dea17-2015-4fa0-baef-89d20ace9d77" + "WESTUS:20200511T082337Z:b87d59a8-45fe-45c3-987f-29b46e4c6b8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -182,7 +188,7 @@ "nosniff" ], "Content-Length": [ - "727" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -191,32 +197,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"name\": \"sdk-Namespace-3870\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3870\",\r\n \"createdAt\": \"2019-02-01T00:28:07.39Z\",\r\n \"updatedAt\": \"2019-02-01T00:28:35.573Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3870.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"name\": \"sdk-NS-7423\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7423\",\r\n \"createdAt\": \"2020-05-11T08:23:07.147Z\",\r\n \"updatedAt\": \"2020-05-11T08:23:07.147Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7423.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjM/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "62b3108f-f900-4c59-80d8-02b631c751b8" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "189" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -224,29 +218,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:28:44 GMT" + "Mon, 11 May 2020 08:24:07 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "818cbd30-899b-447b-8aba-02bde97d9824_M7CH3_M7CH3" + "10ad2ab6-e3af-4d6d-8006-d55f987ccc64_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-correlation-request-id": [ - "e41bed18-3c1d-4cfe-9044-c22e771a00bb" + "d9ff4175-a977-4e6d-9346-2d2a9de74376" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002844Z:e41bed18-3c1d-4cfe-9044-c22e771a00bb" + "WESTUS:20200511T082407Z:d9ff4175-a977-4e6d-9346-2d2a9de74376" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -255,7 +249,7 @@ "nosniff" ], "Content-Length": [ - "730" + "710" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,20 +258,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"name\": \"sdk-Namespace-7173\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-7173\",\r\n \"createdAt\": \"2019-02-01T00:28:44.063Z\",\r\n \"updatedAt\": \"2019-02-01T00:28:44.063Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-7173.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"name\": \"sdk-NS-7423\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-7423\",\r\n \"createdAt\": \"2020-05-11T08:23:07.147Z\",\r\n \"updatedAt\": \"2020-05-11T08:23:54.32Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-7423.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "352d5bf7-b468-488f-aece-55543f054324" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "189" ] }, "ResponseHeaders": { @@ -285,29 +291,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:29:14 GMT" + "Mon, 11 May 2020 08:24:14 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3cca6934-adf6-45a3-abb6-39d1a99891ab_M11CH3_M11CH3" + "bc229128-0bc9-4190-9493-e8a0425ab2da_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "48" ], "x-ms-correlation-request-id": [ - "101c0a54-d0cd-493e-b6e3-c36bdcb79a88" + "001fb2ed-2e58-440f-8185-dacac10034bf" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002914Z:101c0a54-d0cd-493e-b6e3-c36bdcb79a88" + "WESTUS:20200511T082414Z:001fb2ed-2e58-440f-8185-dacac10034bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -316,7 +322,7 @@ "nosniff" ], "Content-Length": [ - "730" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -325,20 +331,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"name\": \"sdk-Namespace-7173\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-7173\",\r\n \"createdAt\": \"2019-02-01T00:28:44.063Z\",\r\n \"updatedAt\": \"2019-02-01T00:28:44.063Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-7173.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"name\": \"sdk-NS-8156\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8156\",\r\n \"createdAt\": \"2020-05-11T08:24:14.547Z\",\r\n \"updatedAt\": \"2020-05-11T08:24:14.547Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8156.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -346,29 +352,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:29:44 GMT" + "Mon, 11 May 2020 08:24:44 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1f513683-44ca-4e0f-99a2-ef5623eed994_M6CH3_M6CH3" + "3fd638d4-efb4-4a1e-b2ac-aa3a89a1773c_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11997" ], "x-ms-correlation-request-id": [ - "f17998e4-2ffb-4c8b-adbd-f18383880d36" + "d00e2a53-c148-4e18-acc9-93e658c3d983" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002945Z:f17998e4-2ffb-4c8b-adbd-f18383880d36" + "WESTUS:20200511T082445Z:d00e2a53-c148-4e18-acc9-93e658c3d983" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -377,7 +383,7 @@ "nosniff" ], "Content-Length": [ - "728" + "713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -386,32 +392,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"name\": \"sdk-Namespace-7173\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-7173\",\r\n \"createdAt\": \"2019-02-01T00:28:44.063Z\",\r\n \"updatedAt\": \"2019-02-01T00:29:15.827Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-7173.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"name\": \"sdk-NS-8156\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8156\",\r\n \"createdAt\": \"2020-05-11T08:24:14.547Z\",\r\n \"updatedAt\": \"2020-05-11T08:24:14.547Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8156.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/AuthorizationRules/sdk-Authrules-5877?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9BdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy01ODc3P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4ade1e76-037c-417a-b532-de8c996d3bd7" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "83" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -419,29 +413,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:07 GMT" + "Mon, 11 May 2020 08:25:15 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "05bb04c4-824a-4f05-989d-bccc1c248103_M1CH3_M1CH3" + "c7a8002f-a6f6-40a8-a138-0fd2c1af179d_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-correlation-request-id": [ - "568da14f-8306-4cde-ae5d-d3dc00d44088" + "26413e17-cccc-427d-90ad-395c6b9032c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003007Z:568da14f-8306-4cde-ae5d-d3dc00d44088" + "WESTUS:20200511T082515Z:26413e17-cccc-427d-90ad-395c6b9032c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -450,7 +444,7 @@ "nosniff" ], "Content-Length": [ - "362" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -459,17 +453,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/AuthorizationRules/sdk-Authrules-5877\",\r\n \"name\": \"sdk-Authrules-5877\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"name\": \"sdk-NS-8156\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8156\",\r\n \"createdAt\": \"2020-05-11T08:24:14.547Z\",\r\n \"updatedAt\": \"2020-05-11T08:25:04.597Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8156.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/AuthorizationRules/sdk-Authrules-5877?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9BdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy01ODc3P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/authorizationRules/sdk-Authrules-9528?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTUyOD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "41208a1a-2839-41a5-9887-9cb80c7148c7" + "9b7126f5-ac79-4bf4-955e-da2d95ff1df7" ], "accept-language": [ "en-US" @@ -477,8 +471,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "83" ] }, "ResponseHeaders": { @@ -486,29 +486,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:07 GMT" + "Mon, 11 May 2020 08:25:26 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "22873980-9c34-47b4-ad15-a7b96a19024c_M6CH3_M6CH3" + "15e34e34-502e-40ef-b9b0-311fd572fc93_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "70d9c175-9a1e-413c-919c-405154930966" + "b1da322c-ab31-4088-966c-58e4246af931" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003008Z:70d9c175-9a1e-413c-919c-405154930966" + "WESTUS:20200511T082526Z:b1da322c-ab31-4088-966c-58e4246af931" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -517,7 +517,7 @@ "nosniff" ], "Content-Length": [ - "362" + "345" ], "Content-Type": [ "application/json; charset=utf-8" @@ -526,17 +526,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/AuthorizationRules/sdk-Authrules-5877\",\r\n \"name\": \"sdk-Authrules-5877\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/authorizationRules/sdk-Authrules-9528\",\r\n \"name\": \"sdk-Authrules-9528\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/AuthorizationRules/sdk-Authrules-5877/listKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9BdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy01ODc3L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/authorizationRules/sdk-Authrules-9528?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTUyOD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b92e4e7-2601-4c40-a368-1c7b0f93e649" + "80c1fcec-0343-41a7-9cbe-662f7bfa0a40" ], "accept-language": [ "en-US" @@ -544,8 +544,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -553,29 +553,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:08 GMT" + "Mon, 11 May 2020 08:25:26 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c6089e9c-a4fd-4fd3-9a99-62344b66f4bc_M6CH3_M6CH3" + "fa03f368-ce3d-4950-a05a-70da10b99b35_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "x-ms-correlation-request-id": [ - "28123e5e-e905-4b88-90c8-2aa10a1a393b" + "04a6d74a-3b23-4565-9f76-9950a3e24c54" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003009Z:28123e5e-e905-4b88-90c8-2aa10a1a393b" + "WESTUS:20200511T082526Z:04a6d74a-3b23-4565-9f76-9950a3e24c54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -584,7 +584,7 @@ "nosniff" ], "Content-Length": [ - "526" + "345" ], "Content-Type": [ "application/json; charset=utf-8" @@ -593,17 +593,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-3870.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-5877;SharedAccessKey=X846H/zq6ixtUWn/f4eGj2AEpIGufAqirs1KH5nsA+w=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-3870.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-5877;SharedAccessKey=xnYrS0kDVxJK0qeeYJ1HwBOlqOAPVPLlTQolnb9JbHo=\",\r\n \"primaryKey\": \"X846H/zq6ixtUWn/f4eGj2AEpIGufAqirs1KH5nsA+w=\",\r\n \"secondaryKey\": \"xnYrS0kDVxJK0qeeYJ1HwBOlqOAPVPLlTQolnb9JbHo=\",\r\n \"keyName\": \"sdk-Authrules-5877\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/authorizationRules/sdk-Authrules-9528\",\r\n \"name\": \"sdk-Authrules-9528\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/CheckNameAvailability?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9DaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/authorizationRules/sdk-Authrules-9528/listKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTUyOC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-DisasterRecovery-5011\"\r\n}", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d66bcfff-06bd-4d77-b483-14a3d204f796" + "360ee07c-149c-4f3a-8235-2e986fd0cfa5" ], "accept-language": [ "en-US" @@ -611,14 +611,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "43" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -626,29 +620,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:08 GMT" + "Mon, 11 May 2020 08:25:27 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f9455419-c86f-419e-9839-02162aae8daf_M6CH3_M6CH3" + "928a73f4-8c95-4ae1-8fb3-53746028561a_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "fdf24b96-42ee-4ac3-84a7-94b3b09fda4e" + "cd3dae6f-8813-4f38-aaea-f69f4ae8f483" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003009Z:fdf24b96-42ee-4ac3-84a7-94b3b09fda4e" + "WESTUS:20200511T082527Z:cd3dae6f-8813-4f38-aaea-f69f4ae8f483" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,7 +651,7 @@ "nosniff" ], "Content-Length": [ - "38" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -666,17 +660,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"None\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-7423.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9528;SharedAccessKey=u8BmcsEQV0csrGVFKPKjhn0NEh5ceD6/WrYwiins+s0=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-7423.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9528;SharedAccessKey=fP6pFwJJ1Cn9EXLkouESPeQN/w5pNHZ+Q2zU5nXtSjU=\",\r\n \"primaryKey\": \"u8BmcsEQV0csrGVFKPKjhn0NEh5ceD6/WrYwiins+s0=\",\r\n \"secondaryKey\": \"fP6pFwJJ1Cn9EXLkouESPeQN/w5pNHZ+Q2zU5nXtSjU=\",\r\n \"keyName\": \"sdk-Authrules-9528\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/CheckNameAvailability?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9DaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/checkNameAvailability?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3MvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-Namespace-3870\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-DisasterRecovery-9083\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3df64d1a-5d03-4f59-9373-c51b991f362a" + "3b5c234b-f1a0-4283-abe8-8bb514b24573" ], "accept-language": [ "en-US" @@ -684,14 +678,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "43" ] }, "ResponseHeaders": { @@ -699,29 +693,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:08 GMT" + "Mon, 11 May 2020 08:25:27 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "482c5abe-d559-4720-bbaf-f85c64e749cc_M6CH3_M6CH3" + "d7b8c535-d827-4bdc-ba4a-988fdeae3f47_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "f4374db1-cf18-44fa-bf94-cd1a2bde5bb7" + "cefd8159-3c70-4b61-b081-10cd89369fd9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003009Z:f4374db1-cf18-44fa-bf94-cd1a2bde5bb7" + "WESTUS:20200511T082527Z:cefd8159-3c70-4b61-b081-10cd89369fd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,13 +737,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\"\r\n }\r\n}", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/checkNameAvailability?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3MvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdk-NS-7423\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d509ce06-c9a2-47b2-b279-558fd6e04f7b" + "0c67cae0-271a-4465-ada6-8a3672d8197b" ], "accept-language": [ "en-US" @@ -757,14 +751,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "213" + "29" ] }, "ResponseHeaders": { @@ -772,29 +766,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:25 GMT" + "Mon, 11 May 2020 08:25:27 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "efee3be5-3ee9-4f0d-9b17-f623399c83cb_M4CH3_M4CH3" + "36a8fced-378c-41ab-a203-8db3a4ba1e3a_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "06b26e87-1a1a-4d48-bc55-02c7a800551c" + "71317983-4260-45f6-8b8e-94ccb8f8760d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003026Z:06b26e87-1a1a-4d48-bc55-02c7a800551c" + "WESTUS:20200511T082527Z:71317983-4260-45f6-8b8e-94ccb8f8760d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -803,7 +797,7 @@ "nosniff" ], "Content-Length": [ - "550" + "38" ], "Content-Type": [ "application/json; charset=utf-8" @@ -812,17 +806,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"None\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4a6d18cc-e428-4c13-a2fa-7e5a033d06dc" + "0e499d88-a5b1-4071-b4a5-ab037369854c" ], "accept-language": [ "en-US" @@ -830,14 +824,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "213" + "196" ] }, "ResponseHeaders": { @@ -845,29 +839,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:34:09 GMT" + "Mon, 11 May 2020 08:25:34 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e990a2da-c931-4ef8-95fd-a47deb44be74_M0CH3_M0CH3" + "d8037c6b-2874-47ac-9cca-67ee2a43ff94_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "4ff3f2e6-f951-4c98-bb10-be90e681325d" + "9307e585-4c63-4750-8249-450752da10d4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003410Z:4ff3f2e6-f951-4c98-bb10-be90e681325d" + "WESTUS:20200511T082534Z:9307e585-4c63-4750-8249-450752da10d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -876,7 +870,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -885,17 +879,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "34a16ac3-c7d3-4fcf-bd16-1f5183390192" + "94fa99f4-55fc-4b33-8ce7-b686d0ebb795" ], "accept-language": [ "en-US" @@ -903,8 +897,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "196" ] }, "ResponseHeaders": { @@ -912,29 +912,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:56 GMT" + "Mon, 11 May 2020 08:29:16 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "acdc9a1d-f65f-4d71-885b-1dee78e758f0_M1CH3_M1CH3" + "304e42b4-5d63-472c-8bf0-a121595425d3_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "a854cdfd-cb12-4106-ad8e-2e3993291f1a" + "3bb312a2-01a5-4023-bfec-8c83660720ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003056Z:a854cdfd-cb12-4106-ad8e-2e3993291f1a" + "WESTUS:20200511T082917Z:3bb312a2-01a5-4023-bfec-8c83660720ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -943,7 +943,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -952,17 +952,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39c4c13b-9c44-492b-9fea-e528b57958e5" + "fd53deeb-1060-4e4c-9946-d18973b3b032" ], "accept-language": [ "en-US" @@ -970,8 +970,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -979,29 +979,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:58 GMT" + "Mon, 11 May 2020 08:26:07 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d4df8cfe-b577-4e35-8e09-63e857d27f08_M4CH3_M4CH3" + "7b39fbcc-d664-45c9-bb07-803f3cdc8c47_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11994" ], "x-ms-correlation-request-id": [ - "615e8884-0131-4142-b7cb-97375bb00b44" + "cfa1fea5-dd38-4726-8596-d8d8e6cc91e2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003058Z:615e8884-0131-4142-b7cb-97375bb00b44" + "WESTUS:20200511T082607Z:cfa1fea5-dd38-4726-8596-d8d8e6cc91e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1010,7 +1010,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1019,17 +1019,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec59861a-907e-4610-b822-9b24d6fbaf71" + "9690deff-9a54-4914-8bf1-4b7a20d5d10e" ], "accept-language": [ "en-US" @@ -1037,8 +1037,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1046,29 +1046,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:31:08 GMT" + "Mon, 11 May 2020 08:26:08 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e9f23734-29cb-4734-8f51-95751d322455_M5CH3_M5CH3" + "76bad63e-de93-4b3a-992a-cf361c765c8e_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11991" ], "x-ms-correlation-request-id": [ - "b1dbb913-2a70-468b-8e6c-1935a9af6673" + "72ec7f1b-1949-4fb1-bf31-77243dd67061" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003108Z:b1dbb913-2a70-468b-8e6c-1935a9af6673" + "WESTUS:20200511T082609Z:72ec7f1b-1949-4fb1-bf31-77243dd67061" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1077,7 +1077,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,17 +1086,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "643b8c06-6dc7-4bb6-9bf8-ebb7b644648a" + "895300ad-43ae-4c71-8b56-90300340063e" ], "accept-language": [ "en-US" @@ -1104,8 +1104,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1113,29 +1113,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:31:18 GMT" + "Mon, 11 May 2020 08:26:18 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4291c02b-0ccb-4046-8925-5f9ffc70283b_M2CH3_M2CH3" + "6eb6a218-23d5-4c99-bfcc-37d0a2410c5a_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11990" ], "x-ms-correlation-request-id": [ - "6aa27abd-1930-4725-84b2-98e4098e0cf3" + "6f17906a-0521-4078-b001-8a1e102ba039" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003119Z:6aa27abd-1930-4725-84b2-98e4098e0cf3" + "WESTUS:20200511T082619Z:6f17906a-0521-4078-b001-8a1e102ba039" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1144,7 +1144,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1153,17 +1153,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36ff1f8d-9193-481e-b26c-ef198fb73e1f" + "1cfe706e-a85f-42fe-bc38-dfafdcab32e1" ], "accept-language": [ "en-US" @@ -1171,8 +1171,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1180,29 +1180,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:31:28 GMT" + "Mon, 11 May 2020 08:26:28 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4bb384d1-e8ea-4c75-a354-a34a9ead9809_M0CH3_M0CH3" + "212cad48-3dd4-41f1-aa19-c349612bf63e_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11989" ], "x-ms-correlation-request-id": [ - "4fe68857-5bed-414e-88f4-4d9b34fc329d" + "6409531b-f925-458c-a232-5ad4c4d462d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003129Z:4fe68857-5bed-414e-88f4-4d9b34fc329d" + "WESTUS:20200511T082629Z:6409531b-f925-458c-a232-5ad4c4d462d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1211,7 +1211,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1220,17 +1220,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f8d5679-89e4-48b2-befc-c286d5d08f23" + "a671347a-c970-4eef-8020-6a5d277eee72" ], "accept-language": [ "en-US" @@ -1238,8 +1238,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1247,29 +1247,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:31:38 GMT" + "Mon, 11 May 2020 08:26:38 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e0e8492f-2bbc-4c1d-a1c1-f9ec749ca0a9_M0CH3_M0CH3" + "8181d99f-6628-4a86-a0ca-a568b34c971d_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11988" ], "x-ms-correlation-request-id": [ - "7e75f57e-3cc5-41c7-824f-ca58aac9941f" + "bcda2095-0a17-4010-869f-5043c787123c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003139Z:7e75f57e-3cc5-41c7-824f-ca58aac9941f" + "WESTUS:20200511T082639Z:bcda2095-0a17-4010-869f-5043c787123c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,7 +1278,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1287,17 +1287,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61e12335-9109-440e-9555-fb4d0372fad0" + "371027b4-a015-44a7-9361-614389a3c375" ], "accept-language": [ "en-US" @@ -1305,8 +1305,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1314,29 +1314,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:31:48 GMT" + "Mon, 11 May 2020 08:26:48 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "055864da-2710-4c72-9ad8-3571de7481fa_M9CH3_M9CH3" + "a0c9632d-624f-4833-9173-b5292a0cf952_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11987" ], "x-ms-correlation-request-id": [ - "05ab3766-9c6a-4f7a-9b42-f2b4271bc26a" + "093fabb4-ba0b-4ea1-859c-ae316142b8b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003149Z:05ab3766-9c6a-4f7a-9b42-f2b4271bc26a" + "WESTUS:20200511T082649Z:093fabb4-ba0b-4ea1-859c-ae316142b8b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1345,7 +1345,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1354,17 +1354,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "944404f6-2973-4c28-a9ca-bb0334fc71a1" + "dd1aad83-f82c-4d1c-8cb6-1166818285d1" ], "accept-language": [ "en-US" @@ -1372,8 +1372,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1381,29 +1381,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:32:00 GMT" + "Mon, 11 May 2020 08:26:58 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c248f399-0703-4a32-8475-5c99f6a284f4_M4CH3_M4CH3" + "ae81cad8-fff3-4aa1-b8e6-35ea8d40f47a_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11986" ], "x-ms-correlation-request-id": [ - "21fcc466-f33f-4619-a612-f23ce17a8733" + "bbceea92-3bc0-438b-be18-c051d682d4dc" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003200Z:21fcc466-f33f-4619-a612-f23ce17a8733" + "WESTUS:20200511T082659Z:bbceea92-3bc0-438b-be18-c051d682d4dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1412,7 +1412,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1421,17 +1421,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ac93046-e7c0-4f6b-8f02-2f208df3968d" + "e456bd1c-5714-45ad-9b72-3eb50c3449c6" ], "accept-language": [ "en-US" @@ -1439,8 +1439,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1448,29 +1448,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:32:10 GMT" + "Mon, 11 May 2020 08:27:09 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "277c15b5-5846-47a5-81c3-eed4cfd0042f_M7CH3_M7CH3" + "6122acf1-441a-43d2-b170-a1f4bc489e21_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11985" ], "x-ms-correlation-request-id": [ - "75befa7c-220e-4a69-a2f4-a4c72af0d1bf" + "70c5898f-b5f2-42c7-9a4e-4765b014a9d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003210Z:75befa7c-220e-4a69-a2f4-a4c72af0d1bf" + "WESTUS:20200511T082710Z:70c5898f-b5f2-42c7-9a4e-4765b014a9d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1479,7 +1479,7 @@ "nosniff" ], "Content-Length": [ - "550" + "590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1488,17 +1488,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7803676-5455-4dbd-9626-afab58976f01" + "89cc072c-f494-4e64-b7a4-74c589d787fe" ], "accept-language": [ "en-US" @@ -1506,8 +1506,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1515,29 +1515,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:32:20 GMT" + "Mon, 11 May 2020 08:27:09 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "80f61553-6677-41a1-9d2a-5f5fbf0013c0_M7CH3_M7CH3" + "4c3141a3-c4ba-4e93-9a1d-8112c5cc9a07_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11984" ], "x-ms-correlation-request-id": [ - "855ae837-ef8c-4c74-b65e-3facf95a2b8f" + "903b73a7-07f4-4ce0-abf0-e2f443fdb777" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003221Z:855ae837-ef8c-4c74-b65e-3facf95a2b8f" + "WESTUS:20200511T082710Z:903b73a7-07f4-4ce0-abf0-e2f443fdb777" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1546,7 +1546,7 @@ "nosniff" ], "Content-Length": [ - "589" + "590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1555,17 +1555,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7484dfe2-1e48-4a0a-bae0-d66358c2be6f" + "cc236918-f7ea-4055-a2d3-b2f248025c9f" ], "accept-language": [ "en-US" @@ -1573,8 +1573,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1582,29 +1582,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:32:21 GMT" + "Mon, 11 May 2020 08:27:21 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "60d33a92-c8d5-4857-ac58-82c0ff196f74_M7CH3_M7CH3" + "4e85b60c-993e-4938-b39b-8730893fb3cf_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11983" ], "x-ms-correlation-request-id": [ - "9939f81b-f8f4-4f90-9e30-deb0d64b5540" + "dc897838-f5d8-4675-b796-933e011dc45c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003221Z:9939f81b-f8f4-4f90-9e30-deb0d64b5540" + "WESTUS:20200511T082721Z:dc897838-f5d8-4675-b796-933e011dc45c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1613,7 +1613,7 @@ "nosniff" ], "Content-Length": [ - "589" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1622,17 +1622,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "beb55df1-9426-45ca-be30-e09cf3a8dd6f" + "f34ca565-e00a-4bbe-b886-dfabb17665eb" ], "accept-language": [ "en-US" @@ -1640,8 +1640,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1649,29 +1649,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:32:31 GMT" + "Mon, 11 May 2020 08:27:31 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b99c3ff4-4749-4f1e-9155-a3b493b6a694_M7CH3_M7CH3" + "0272bc75-e0d8-4a18-878b-c48de367627f_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11982" ], "x-ms-correlation-request-id": [ - "322b5db3-c938-4369-b922-b38dcc895c62" + "496862e1-707d-41c3-908c-de6d5e21d188" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003232Z:322b5db3-c938-4369-b922-b38dcc895c62" + "WESTUS:20200511T082731Z:496862e1-707d-41c3-908c-de6d5e21d188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,7 +1680,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,17 +1689,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b60b4c0-df16-477c-b52a-96a66151e16e" + "263e623b-ce4b-4d02-8914-3c67f39b0ab1" ], "accept-language": [ "en-US" @@ -1707,8 +1707,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1716,29 +1716,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:32:41 GMT" + "Mon, 11 May 2020 08:27:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ed1e1738-49f1-41c2-9d1a-dac3dea99777_M6CH3_M6CH3" + "cb1b0c3d-b5f3-420d-90f7-bd5010d641d5_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11981" ], "x-ms-correlation-request-id": [ - "622728c3-7203-42f1-80cc-751a02ac7e39" + "86a50b07-21c5-42b9-b3ed-eabb76bd7012" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003242Z:622728c3-7203-42f1-80cc-751a02ac7e39" + "WESTUS:20200511T082749Z:86a50b07-21c5-42b9-b3ed-eabb76bd7012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1747,7 +1747,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1756,17 +1756,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1f235ec-fe92-40b1-b16b-1694c5813c64" + "ad54f766-023c-453b-b23e-cbd3fc1417cd" ], "accept-language": [ "en-US" @@ -1774,8 +1774,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1783,29 +1783,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:32:51 GMT" + "Mon, 11 May 2020 08:27:59 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2cffd783-daa4-4d34-bea6-249ae1a8d7c1_M6CH3_M6CH3" + "2b2fc2b0-066d-4de8-bac1-95754d2e731f_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11980" ], "x-ms-correlation-request-id": [ - "18466508-3479-4109-ae55-7a0ce58a4321" + "e1c89773-27bb-4723-a1a4-fbc56b3f0c91" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003252Z:18466508-3479-4109-ae55-7a0ce58a4321" + "WESTUS:20200511T082759Z:e1c89773-27bb-4723-a1a4-fbc56b3f0c91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1814,7 +1814,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1823,17 +1823,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8394a5c-17f4-4f2d-87c9-42ae09becf17" + "fb2d6ccb-13de-4606-99a2-6d5cd41942ed" ], "accept-language": [ "en-US" @@ -1841,8 +1841,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1850,29 +1850,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:33:02 GMT" + "Mon, 11 May 2020 08:28:09 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ffa33cac-9ac3-4903-8ac8-c4484f90bbb6_M6CH3_M6CH3" + "b8a2088a-8beb-4f01-89f7-abbc6c02eb5b_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11979" ], "x-ms-correlation-request-id": [ - "16b3eb42-26d4-4449-b01b-0bbd1d7cae66" + "054ca1dc-4a0e-4b04-8124-11d09b5806ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003303Z:16b3eb42-26d4-4449-b01b-0bbd1d7cae66" + "WESTUS:20200511T082809Z:054ca1dc-4a0e-4b04-8124-11d09b5806ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,7 +1881,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1890,17 +1890,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6f4a41c-42a9-4f15-a28b-b74061b51d5a" + "cb172423-4d37-43a9-bb20-85124126f5be" ], "accept-language": [ "en-US" @@ -1908,8 +1908,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1917,29 +1917,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:33:13 GMT" + "Mon, 11 May 2020 08:28:19 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bb3e8213-4ee6-4ef5-86a8-3351c288d8d3_M6CH3_M6CH3" + "e8fa70bf-6985-4811-8ec2-d48fcff67497_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11978" ], "x-ms-correlation-request-id": [ - "6912b84d-6d07-4a96-b64a-31242407d03e" + "9b270ba9-ea7c-4017-b4c0-c0062fc8266d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003313Z:6912b84d-6d07-4a96-b64a-31242407d03e" + "WESTUS:20200511T082819Z:9b270ba9-ea7c-4017-b4c0-c0062fc8266d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1948,7 +1948,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1957,17 +1957,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84b62a47-1a9d-4f4a-8851-d7bab88cd073" + "85a85dd2-7aad-468f-8d5e-a805ea1f69ce" ], "accept-language": [ "en-US" @@ -1975,8 +1975,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1984,29 +1984,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:33:23 GMT" + "Mon, 11 May 2020 08:28:29 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "21db87aa-9af5-4c12-95b7-b34a85f0d17d_M8CH3_M8CH3" + "ae5e19d9-5e80-4622-b268-8f86e691ae54_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11977" ], "x-ms-correlation-request-id": [ - "ab0d4c80-bfc9-4018-b4ad-e90c8897dda1" + "c6eb6ec0-34d4-432f-9661-b8df5a2b3589" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003323Z:ab0d4c80-bfc9-4018-b4ad-e90c8897dda1" + "WESTUS:20200511T082829Z:c6eb6ec0-34d4-432f-9661-b8df5a2b3589" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2015,7 +2015,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2024,17 +2024,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "247ec178-c920-4e48-a8e0-c113fd5f3589" + "02a1d809-d6d8-4f03-8604-0b15f41978c2" ], "accept-language": [ "en-US" @@ -2042,8 +2042,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2051,29 +2051,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:33:33 GMT" + "Mon, 11 May 2020 08:28:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4d43e64e-9491-49d2-8970-53b1bfa854a6_M6CH3_M6CH3" + "4ba3f628-599b-4a26-9f25-aa825dea0128_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11976" ], "x-ms-correlation-request-id": [ - "9b1b38ee-e63c-4dfe-8cf8-8ecf5515eb7d" + "0130e64c-09d5-4db8-9ad0-deb27b3df2a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003333Z:9b1b38ee-e63c-4dfe-8cf8-8ecf5515eb7d" + "WESTUS:20200511T082840Z:0130e64c-09d5-4db8-9ad0-deb27b3df2a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2082,7 +2082,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2091,17 +2091,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fae00a9-adee-41f6-a6cc-3f468b57f896" + "18896611-b740-41b2-b128-99c08547612a" ], "accept-language": [ "en-US" @@ -2109,8 +2109,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2118,29 +2118,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:33:43 GMT" + "Mon, 11 May 2020 08:28:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "240830f3-895f-4454-ae2e-f1170c186160_M3CH3_M3CH3" + "bac3d4ae-0416-45ae-a547-29415112b166_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11975" ], "x-ms-correlation-request-id": [ - "9454b404-3283-46ac-bfbc-7a5877202a05" + "dae1731c-a9b0-4b12-99d1-47d2680da79d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003344Z:9454b404-3283-46ac-bfbc-7a5877202a05" + "WESTUS:20200511T082850Z:dae1731c-a9b0-4b12-99d1-47d2680da79d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2149,7 +2149,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2158,17 +2158,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d48c7544-0ffa-43d0-b9e6-4dc82c9b531c" + "ed356b06-1b26-428c-9449-a3317b119d8c" ], "accept-language": [ "en-US" @@ -2176,8 +2176,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2185,29 +2185,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:33:53 GMT" + "Mon, 11 May 2020 08:28:59 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "47a61187-760a-41fe-9f15-e03f297af65d_M0CH3_M0CH3" + "15e53044-d4ad-4a09-adfa-f05cab5ac4ae_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11974" ], "x-ms-correlation-request-id": [ - "d913fa2b-4eb2-4fed-9e05-aae1dc9103c9" + "06b522a7-d8e6-47e2-b242-218cc1514005" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003354Z:d913fa2b-4eb2-4fed-9e05-aae1dc9103c9" + "WESTUS:20200511T082900Z:06b522a7-d8e6-47e2-b242-218cc1514005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2216,7 +2216,7 @@ "nosniff" ], "Content-Length": [ - "408" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2225,17 +2225,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d52026d2-bca6-4144-b547-717f07f3bf36" + "9dec0caa-b7bf-43ff-b5a3-31e0ed0f1bc2" ], "accept-language": [ "en-US" @@ -2243,8 +2243,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2252,29 +2252,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:34:21 GMT" + "Mon, 11 May 2020 08:29:26 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e5aae32f-f27e-418f-97b5-a031dc43a122_M9CH3_M9CH3" + "4a3412a0-d5fb-4c68-bb89-e272f97380e8_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11973" ], "x-ms-correlation-request-id": [ - "d312c6cf-1b21-416b-8848-189e62aa6613" + "e5a9e74f-28b5-4c98-87b3-98c68108c0de" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003421Z:d312c6cf-1b21-416b-8848-189e62aa6613" + "WESTUS:20200511T082927Z:e5a9e74f-28b5-4c98-87b3-98c68108c0de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2283,7 +2283,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2292,17 +2292,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ec2ffc5-389d-4bb1-9c36-ace709aabe54" + "14bcb90f-1f88-4280-8d05-faf2f9d27615" ], "accept-language": [ "en-US" @@ -2310,8 +2310,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2319,29 +2319,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:34:21 GMT" + "Mon, 11 May 2020 08:29:26 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "12006475-7f67-4ffc-9750-37ad661bcc17_M9CH3_M9CH3" + "3e5596a6-8c98-414c-9a13-eaec65b1e14d_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11972" ], "x-ms-correlation-request-id": [ - "7a038780-95eb-463f-9c71-9b532475e821" + "9fbfdc85-93ce-4d51-89b0-2b6736ef3e27" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003421Z:7a038780-95eb-463f-9c71-9b532475e821" + "WESTUS:20200511T082927Z:9fbfdc85-93ce-4d51-89b0-2b6736ef3e27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2350,7 +2350,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2359,17 +2359,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c008fb50-ae5f-45d7-b759-82ae0b8bda1d" + "ceab0694-b7f4-46f5-8c0e-26b9f74e868d" ], "accept-language": [ "en-US" @@ -2377,8 +2377,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2386,29 +2386,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:34:31 GMT" + "Mon, 11 May 2020 08:29:36 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "cbf9ec7a-5a3b-4115-bd90-68a4f9e29fff_M0CH3_M0CH3" + "3cf73123-2113-4441-baf0-cc620a4b930f_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11971" ], "x-ms-correlation-request-id": [ - "299e609c-6441-4285-9cbd-04a35eb52093" + "eaa1499d-3f20-49da-848e-5840f506ef5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003431Z:299e609c-6441-4285-9cbd-04a35eb52093" + "WESTUS:20200511T082937Z:eaa1499d-3f20-49da-848e-5840f506ef5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2417,7 +2417,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2426,17 +2426,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9144aeda-4767-4c51-b19e-349369d8de9d" + "bc14cf4e-2f16-4d44-8fcc-64dae4d74c76" ], "accept-language": [ "en-US" @@ -2444,8 +2444,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2453,29 +2453,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:34:41 GMT" + "Mon, 11 May 2020 08:29:46 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "beeaf077-be0b-4f17-9d98-daf2026f5560_M5CH3_M5CH3" + "48ca9cce-c42f-43a8-8923-77822017ecb5_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11970" ], "x-ms-correlation-request-id": [ - "1b00ee44-5cc9-48c4-82e7-b5db3bd1b73b" + "3036744c-a67f-4f3d-9b6d-ee6d2cf85715" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003441Z:1b00ee44-5cc9-48c4-82e7-b5db3bd1b73b" + "WESTUS:20200511T082947Z:3036744c-a67f-4f3d-9b6d-ee6d2cf85715" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2484,7 +2484,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2493,17 +2493,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37446a15-bf21-432e-877f-5ed2a9d85aa3" + "38b05dd5-b8c5-4020-8488-00ccc76aa7f6" ], "accept-language": [ "en-US" @@ -2511,8 +2511,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2520,29 +2520,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:34:51 GMT" + "Mon, 11 May 2020 08:29:57 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "06ed5c7e-1212-4143-8a62-4d40451cfe7c_M9CH3_M9CH3" + "ff3de4e5-c536-423d-b672-6c0b8c8ec519_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11969" ], "x-ms-correlation-request-id": [ - "07a21951-6a3b-4cca-bee1-47fa633887e4" + "ee4d4599-e1a7-4741-a984-b265e03147f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003451Z:07a21951-6a3b-4cca-bee1-47fa633887e4" + "WESTUS:20200511T082957Z:ee4d4599-e1a7-4741-a984-b265e03147f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2551,7 +2551,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2560,17 +2560,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0deeaf18-f5f6-4cb3-86b3-88d186761c1c" + "45c9eace-0bfc-4cab-a863-8af21e602553" ], "accept-language": [ "en-US" @@ -2578,8 +2578,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2587,29 +2587,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:35:01 GMT" + "Mon, 11 May 2020 08:30:07 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "891fb7f6-6518-4d4e-a7e5-cf88a85ef71e_M8CH3_M8CH3" + "f63e1964-36b7-4d26-bf8e-57b944958747_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11968" ], "x-ms-correlation-request-id": [ - "09e7d180-02f1-48be-a8a2-176f39721893" + "204d5e27-28aa-4827-96bb-54ddddf60288" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003502Z:09e7d180-02f1-48be-a8a2-176f39721893" + "WESTUS:20200511T083007Z:204d5e27-28aa-4827-96bb-54ddddf60288" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2618,7 +2618,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2627,17 +2627,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a3e6dbd-fad1-4da0-a224-b3a4aab765ff" + "483645e4-beaa-4e77-af50-1ee171711649" ], "accept-language": [ "en-US" @@ -2645,8 +2645,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2654,29 +2654,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:35:11 GMT" + "Mon, 11 May 2020 08:30:17 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8ad48844-ec7e-46a2-8ec4-abc33d87b92d_M8CH3_M8CH3" + "26133753-6df5-4309-ac19-085b98b6aa74_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11967" ], "x-ms-correlation-request-id": [ - "337f0cfc-a238-4883-86e5-1bf32af6c9bc" + "701ba69f-b166-400c-b754-4f6ee6cabe8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003512Z:337f0cfc-a238-4883-86e5-1bf32af6c9bc" + "WESTUS:20200511T083017Z:701ba69f-b166-400c-b754-4f6ee6cabe8d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2685,7 +2685,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2694,17 +2694,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f6646c0-ffa3-4f63-8b5e-5458ae6e615a" + "6d070044-42e0-4066-ba0e-0ed2b9801b15" ], "accept-language": [ "en-US" @@ -2712,8 +2712,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2721,29 +2721,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:35:21 GMT" + "Mon, 11 May 2020 08:30:28 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "aa1b0246-20b3-4331-a219-9fdcfdd97252_M5CH3_M5CH3" + "f2d1c24f-8e65-4d19-bd6b-d1a82b582416_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11966" ], "x-ms-correlation-request-id": [ - "a4d2fae7-9be9-439d-8532-2de4754eddce" + "9d0d6a50-d8bc-4314-ae6c-5e9d31de14f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003522Z:a4d2fae7-9be9-439d-8532-2de4754eddce" + "WESTUS:20200511T083028Z:9d0d6a50-d8bc-4314-ae6c-5e9d31de14f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2752,7 +2752,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2761,17 +2761,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b92bc33-2a52-4396-b15f-7d2b543cf026" + "6fb127c0-525c-4bce-bb65-c4951a9dd621" ], "accept-language": [ "en-US" @@ -2779,8 +2779,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2788,29 +2788,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:35:32 GMT" + "Mon, 11 May 2020 08:30:38 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "917cfbdf-6c37-4480-acb8-665d28c732fc_M6CH3_M6CH3" + "da4f1cb4-45a6-44bc-ba78-b41bcbc33bd5_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11965" ], "x-ms-correlation-request-id": [ - "838d3c7d-9f5b-45c3-b9dc-2c84a9fe3798" + "aa9943ee-e343-48b6-b67e-072f1f991c24" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003532Z:838d3c7d-9f5b-45c3-b9dc-2c84a9fe3798" + "WESTUS:20200511T083038Z:aa9943ee-e343-48b6-b67e-072f1f991c24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2819,7 +2819,7 @@ "nosniff" ], "Content-Length": [ - "550" + "551" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2828,17 +2828,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17112d72-9b05-4b42-af9c-184b06b8cce3" + "1a07445f-3af0-46c0-8167-07a3b8672376" ], "accept-language": [ "en-US" @@ -2846,8 +2846,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2855,29 +2855,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:35:42 GMT" + "Mon, 11 May 2020 08:30:48 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e60f5788-f3cd-4aba-b499-7d97568f0001_M0CH3_M0CH3" + "9c9c3f86-abe2-4465-bfbd-7edc58120553_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11964" ], "x-ms-correlation-request-id": [ - "0e84e35a-1ad9-4197-b718-e37a3976269f" + "b9159d57-36c5-4002-b053-4622d8d20309" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003542Z:0e84e35a-1ad9-4197-b718-e37a3976269f" + "WESTUS:20200511T083048Z:b9159d57-36c5-4002-b053-4622d8d20309" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2886,7 +2886,7 @@ "nosniff" ], "Content-Length": [ - "550" + "590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2895,17 +2895,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6248593d-a00c-4ef1-bb59-2e6c6f8fec67" + "1fe344ef-b770-4bd1-a7f6-d8329e5b5dd8" ], "accept-language": [ "en-US" @@ -2913,8 +2913,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2922,29 +2922,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:35:52 GMT" + "Mon, 11 May 2020 08:30:59 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4ddeaa9f-8740-4c38-ab7f-3aa495351dc4_M8CH3_M8CH3" + "287a3613-36c7-4f25-b1d7-d3ae93dde166_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11963" ], "x-ms-correlation-request-id": [ - "260215f7-a6bb-4c83-91d5-23ab63b28b02" + "46151fdd-bee4-483e-9174-405b6981127f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003553Z:260215f7-a6bb-4c83-91d5-23ab63b28b02" + "WESTUS:20200511T083059Z:46151fdd-bee4-483e-9174-405b6981127f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2953,7 +2953,7 @@ "nosniff" ], "Content-Length": [ - "550" + "590" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2962,17 +2962,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd02c72b-d684-48a1-9aa2-bb93d9bee45f" + "8952afd1-378e-40e4-919d-c92bb7abf6a2" ], "accept-language": [ "en-US" @@ -2980,8 +2980,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2989,29 +2989,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:36:03 GMT" + "Mon, 11 May 2020 08:26:07 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "77e3bf3a-ff69-45b6-be30-8ee8a967727b_M0CH3_M0CH3" + "433e86ff-9fd9-48df-ab28-656301ef4703_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11993" ], "x-ms-correlation-request-id": [ - "85db0558-33a9-46a0-a451-0be3c3ebcb04" + "6e176ef3-90dd-44fd-8952-0ad78c1b10a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003603Z:85db0558-33a9-46a0-a451-0be3c3ebcb04" + "WESTUS:20200511T082607Z:6e176ef3-90dd-44fd-8952-0ad78c1b10a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3020,7 +3020,7 @@ "nosniff" ], "Content-Length": [ - "589" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3029,17 +3029,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7db96b0-8bba-4c29-8b24-94a6f04f790c" + "4a9544a6-a573-4857-8d40-012cd675dd37" ], "accept-language": [ "en-US" @@ -3047,8 +3047,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3056,7 +3056,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:36:14 GMT" + "Mon, 11 May 2020 08:31:09 GMT" ], "Pragma": [ "no-cache" @@ -3066,19 +3066,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7c3350ef-83ef-4a14-847b-2716a6699eb0_M7CH3_M7CH3" + "d273c27c-8bdc-4e72-9035-4a42cc5f807b_M12CH3_M12CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11962" ], "x-ms-correlation-request-id": [ - "9b0182ce-d352-43df-b3d7-1098aa9fe0c4" + "0577a702-03f4-4310-9bd9-70b614925e87" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003614Z:9b0182ce-d352-43df-b3d7-1098aa9fe0c4" + "WESTUS:20200511T083109Z:0577a702-03f4-4310-9bd9-70b614925e87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3087,7 +3087,7 @@ "nosniff" ], "Content-Length": [ - "589" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3096,17 +3096,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173\",\r\n \"role\": \"Primary\",\r\n \"type\": \"MetadataReplication\",\r\n \"pendingReplicationOperationsCount\": 0\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0390e75-9b62-40e2-af8a-27882fcc543c" + "85a83729-ff53-4bb4-85b2-4c0d78bde5fb" ], "accept-language": [ "en-US" @@ -3114,8 +3114,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3123,7 +3123,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:56 GMT" + "Mon, 11 May 2020 08:31:19 GMT" ], "Pragma": [ "no-cache" @@ -3133,19 +3133,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bfcf370f-a142-4cd2-afff-346aab8059ae_M4CH3_M4CH3" + "d5738dab-88b9-440c-8555-932c0ea5dedf_M11CH3_M11CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11961" ], "x-ms-correlation-request-id": [ - "91db7d79-b0df-48bf-b94b-43b14815df5b" + "e38c2517-6a00-4a85-bac4-a332c8a669e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003056Z:91db7d79-b0df-48bf-b94b-43b14815df5b" + "WESTUS:20200511T083120Z:e38c2517-6a00-4a85-bac4-a332c8a669e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3154,7 +3154,7 @@ "nosniff" ], "Content-Length": [ - "552" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3163,17 +3163,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bc1db88-35dc-4a0b-8a0a-67167d75a07a" + "544af712-3796-46c3-b415-b1d5bc5f0078" ], "accept-language": [ "en-US" @@ -3181,8 +3181,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3190,7 +3190,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:36:24 GMT" + "Mon, 11 May 2020 08:31:29 GMT" ], "Pragma": [ "no-cache" @@ -3200,19 +3200,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1b3fb164-2e13-41f1-b912-f92cf2c59924_M1CH3_M1CH3" + "59d7ef96-55c7-473d-84a3-d610f7c54cac_M1CH3_M1CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11960" ], "x-ms-correlation-request-id": [ - "a382efb8-038e-4e9c-9cf9-5144a9d7fc19" + "ee6acd53-1f07-41d0-8669-e5ba20359f5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003625Z:a382efb8-038e-4e9c-9cf9-5144a9d7fc19" + "WESTUS:20200511T083130Z:ee6acd53-1f07-41d0-8669-e5ba20359f5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3221,7 +3221,7 @@ "nosniff" ], "Content-Length": [ - "552" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3230,17 +3230,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "243657c0-182d-4824-ae66-146f72deddcd" + "a78a80de-47d5-4dc6-9fb8-14f91370c83e" ], "accept-language": [ "en-US" @@ -3248,8 +3248,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3257,7 +3257,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:36:35 GMT" + "Mon, 11 May 2020 08:31:39 GMT" ], "Pragma": [ "no-cache" @@ -3267,19 +3267,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "df8da3d0-9b95-41c4-9241-d70669361527_M1CH3_M1CH3" + "abc8d85c-67b1-49d1-9d53-e730d7d86c8f_M12CH3_M12CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11959" ], "x-ms-correlation-request-id": [ - "ff0538f5-cbff-4ad4-9f0f-8b5839a0bba9" + "99bd2541-f0e0-47b9-8c17-00eeeb9ae866" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003636Z:ff0538f5-cbff-4ad4-9f0f-8b5839a0bba9" + "WESTUS:20200511T083140Z:99bd2541-f0e0-47b9-8c17-00eeeb9ae866" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3288,7 +3288,7 @@ "nosniff" ], "Content-Length": [ - "552" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3297,17 +3297,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d424c10c-cd0f-4041-873b-5d44f682a463" + "e4a5057b-2675-4071-a49b-f769f4e7d3ab" ], "accept-language": [ "en-US" @@ -3315,8 +3315,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3324,7 +3324,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:36:46 GMT" + "Mon, 11 May 2020 08:31:50 GMT" ], "Pragma": [ "no-cache" @@ -3334,19 +3334,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bb5eb384-6ddf-4d8e-8040-1b8cbc917faa_M1CH3_M1CH3" + "4c2d1a7f-4022-417e-803e-ef5325b02d47_M12CH3_M12CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11958" ], "x-ms-correlation-request-id": [ - "f2c68593-828d-40e4-8917-86575f12f117" + "30b9b151-76a2-44d8-8ccd-de211057f49f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003646Z:f2c68593-828d-40e4-8917-86575f12f117" + "WESTUS:20200511T083150Z:30b9b151-76a2-44d8-8ccd-de211057f49f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3355,7 +3355,7 @@ "nosniff" ], "Content-Length": [ - "552" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3364,17 +3364,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da541064-e601-4845-b0ba-529e94d06954" + "7c510bda-781c-4128-a1cf-2aedfffefa4b" ], "accept-language": [ "en-US" @@ -3382,8 +3382,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3391,7 +3391,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:36:56 GMT" + "Mon, 11 May 2020 08:32:00 GMT" ], "Pragma": [ "no-cache" @@ -3401,19 +3401,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ba85778a-6bcf-4fe8-9b2a-e5704114b6d9_M1CH3_M1CH3" + "b383e67c-b1ae-4254-b020-c20138391e6f_M12CH3_M12CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11957" ], "x-ms-correlation-request-id": [ - "e3f51b41-f426-4232-9eb8-6b34628c657c" + "a559c1cd-52b3-4a13-a85d-8ebe694ac83a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003656Z:e3f51b41-f426-4232-9eb8-6b34628c657c" + "WESTUS:20200511T083200Z:a559c1cd-52b3-4a13-a85d-8ebe694ac83a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3422,7 +3422,7 @@ "nosniff" ], "Content-Length": [ - "552" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3431,17 +3431,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5b1fb4a-f614-4cc4-8158-4a6ab985c52b" + "083ff2f2-ddcb-452b-8e45-28cf7bd80a05" ], "accept-language": [ "en-US" @@ -3449,8 +3449,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3458,7 +3458,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:06 GMT" + "Mon, 11 May 2020 08:32:10 GMT" ], "Pragma": [ "no-cache" @@ -3468,19 +3468,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "12931a3c-0a63-44cd-8e28-6051e35a5ebb_M11CH3_M11CH3" + "13eba188-e5a9-4f2b-8dd5-b2f57826ddf2_M12CH3_M12CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11956" ], "x-ms-correlation-request-id": [ - "d0a2ea02-5ccd-401b-8435-79de337373d3" + "edae29e3-80c8-4777-b247-0900d0e7a4a4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003706Z:d0a2ea02-5ccd-401b-8435-79de337373d3" + "WESTUS:20200511T083211Z:edae29e3-80c8-4777-b247-0900d0e7a4a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3489,7 +3489,7 @@ "nosniff" ], "Content-Length": [ - "552" + "553" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3498,17 +3498,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "544ded6b-a02a-47fe-9e7a-9587674eab77" + "89c393a0-d93e-4515-bd7c-8836606a4cee" ], "accept-language": [ "en-US" @@ -3516,8 +3516,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3525,7 +3525,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:16 GMT" + "Mon, 11 May 2020 08:32:20 GMT" ], "Pragma": [ "no-cache" @@ -3535,19 +3535,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bebb6286-2064-408c-b5de-2b29dd9174a9_M1CH3_M1CH3" + "33ba2b92-f989-492e-bed0-b385ed97312e_M12CH3_M12CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11955" ], "x-ms-correlation-request-id": [ - "5af4bfaf-a4a5-4eaa-a945-87e092052840" + "3f4e6da9-1324-4f24-b68c-eaf845ef0f84" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003716Z:5af4bfaf-a4a5-4eaa-a945-87e092052840" + "WESTUS:20200511T083221Z:3f4e6da9-1324-4f24-b68c-eaf845ef0f84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3556,7 +3556,7 @@ "nosniff" ], "Content-Length": [ - "552" + "426" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3565,17 +3565,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083/authorizationRules/sdk-Authrules-9528?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4My9hdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy05NTI4P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c080012-b04a-494d-a41c-095de0100eef" + "ef871a4c-6d71-4b67-9eff-1158d2941db7" ], "accept-language": [ "en-US" @@ -3583,8 +3583,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3592,29 +3592,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:26 GMT" + "Mon, 11 May 2020 08:26:08 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "587b663f-7268-4cee-8676-2bf772137fa2_M4CH3_M4CH3" + "849c2a31-bcfe-4ef4-b7b1-36166004c3df_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11992" ], "x-ms-correlation-request-id": [ - "cae20afc-99e3-47ae-af61-617109e9856d" + "94ace31f-a29d-4b32-aca1-7f2d63293eee" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003727Z:cae20afc-99e3-47ae-af61-617109e9856d" + "WESTUS:20200511T082608Z:94ace31f-a29d-4b32-aca1-7f2d63293eee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3623,7 +3623,7 @@ "nosniff" ], "Content-Length": [ - "552" + "395" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3632,17 +3632,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Accepted\",\r\n \"partnerNamespace\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870\",\r\n \"role\": \"Secondary\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083/authorizationRules/sdk-Authrules-9528\",\r\n \"name\": \"sdk-Authrules-9528\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083/authorizationRules/sdk-Authrules-9528/listKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4My9hdXRob3JpemF0aW9uUnVsZXMvc2RrLUF1dGhydWxlcy05NTI4L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "039f1be6-bff4-40e5-bbb0-79a00890aed7" + "fe20c5c9-b078-476b-bdb5-737094c52350" ], "accept-language": [ "en-US" @@ -3650,8 +3650,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3659,29 +3659,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:36 GMT" + "Mon, 11 May 2020 08:26:08 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "018c69f1-a59c-43da-b661-e7593cedbd13_M3CH3_M3CH3" + "2cfadeba-d51e-44eb-b5f2-3bc3b3131202_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-correlation-request-id": [ - "6309af51-bf7b-4a9c-9916-f58eefcb5978" + "5819ca47-ed3e-4331-bb0e-4c1853d29b22" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003737Z:6309af51-bf7b-4a9c-9916-f58eefcb5978" + "WESTUS:20200511T082608Z:5819ca47-ed3e-4331-bb0e-4c1853d29b22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3690,7 +3690,7 @@ "nosniff" ], "Content-Length": [ - "408" + "550" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3699,17 +3699,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"aliasPrimaryConnectionString\": \"Endpoint=sb://sdk-disasterrecovery-9083.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9528;SharedAccessKey=u8BmcsEQV0csrGVFKPKjhn0NEh5ceD6/WrYwiins+s0=\",\r\n \"aliasSecondaryConnectionString\": \"Endpoint=sb://sdk-disasterrecovery-9083.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9528;SharedAccessKey=fP6pFwJJ1Cn9EXLkouESPeQN/w5pNHZ+Q2zU5nXtSjU=\",\r\n \"primaryKey\": \"u8BmcsEQV0csrGVFKPKjhn0NEh5ceD6/WrYwiins+s0=\",\r\n \"secondaryKey\": \"fP6pFwJJ1Cn9EXLkouESPeQN/w5pNHZ+Q2zU5nXtSjU=\",\r\n \"keyName\": \"sdk-Authrules-9528\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011/AuthorizationRules/sdk-Authrules-5877?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExL0F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTU4Nzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/disasterRecoveryConfigs/sdk-DisasterRecovery-9083/breakPairing?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjMvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4My9icmVha1BhaXJpbmc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "412723c1-6cce-4901-a7ad-40f5773ae1d1" + "a254b07d-abd6-4ed1-a03a-05784bcc38f0" ], "accept-language": [ "en-US" @@ -3717,8 +3717,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3726,29 +3726,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:57 GMT" + "Mon, 11 May 2020 08:27:09 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "27dad46d-9387-47af-98ae-23a73c92faef_M4CH3_M4CH3" + "425b4bd0-a547-4b62-9f7a-6a4bd25cd572_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "113cba0f-64ad-4967-8ad7-9af786d26b20" + "944e184d-b5fd-4dea-a6a8-769e96e124e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003057Z:113cba0f-64ad-4967-8ad7-9af786d26b20" + "WESTUS:20200511T082710Z:944e184d-b5fd-4dea-a6a8-769e96e124e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3757,26 +3757,23 @@ "nosniff" ], "Content-Length": [ - "412" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011/AuthorizationRules/sdk-Authrules-5877\",\r\n \"name\": \"sdk-Authrules-5877\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011/AuthorizationRules/sdk-Authrules-5877/listKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExL0F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTU4NzcvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083/failover?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4My9mYWlsb3Zlcj9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "028e0f2a-efd6-4372-be16-f9c7377eee4a" + "77dd7767-e661-47de-8818-ed8c7ede77e9" ], "accept-language": [ "en-US" @@ -3784,8 +3781,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3793,29 +3790,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:30:57 GMT" + "Mon, 11 May 2020 08:30:59 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fe778332-e2bc-44b2-97d1-66e7ca130321_M4CH3_M4CH3" + "e6aa60e4-31ea-4f35-a8f4-b0ff4dd5a017_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "a959e6d6-72f6-476b-a068-083960841be2" + "4f68296c-aaba-40ff-ba2e-ab8e83b77986" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003058Z:a959e6d6-72f6-476b-a068-083960841be2" + "WESTUS:20200511T083059Z:4f68296c-aaba-40ff-ba2e-ab8e83b77986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3824,26 +3821,23 @@ "nosniff" ], "Content-Length": [ - "550" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"aliasPrimaryConnectionString\": \"Endpoint=sb://sdk-disasterrecovery-5011.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-5877;SharedAccessKey=X846H/zq6ixtUWn/f4eGj2AEpIGufAqirs1KH5nsA+w=\",\r\n \"aliasSecondaryConnectionString\": \"Endpoint=sb://sdk-disasterrecovery-5011.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-5877;SharedAccessKey=xnYrS0kDVxJK0qeeYJ1HwBOlqOAPVPLlTQolnb9JbHo=\",\r\n \"primaryKey\": \"X846H/zq6ixtUWn/f4eGj2AEpIGufAqirs1KH5nsA+w=\",\r\n \"secondaryKey\": \"xnYrS0kDVxJK0qeeYJ1HwBOlqOAPVPLlTQolnb9JbHo=\",\r\n \"keyName\": \"sdk-Authrules-5877\"\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3870/disasterRecoveryConfigs/sdk-DisasterRecovery-5011/breakPairing?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtMzg3MC9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExL2JyZWFrUGFpcmluZz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3M/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f76d67b-6219-4fb2-9673-883341daede3" + "fcd6dd5d-3ea3-4007-907c-88dca5d47ad0" ], "accept-language": [ "en-US" @@ -3851,8 +3845,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3860,7 +3854,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:32:21 GMT" + "Mon, 11 May 2020 08:32:21 GMT" ], "Pragma": [ "no-cache" @@ -3870,19 +3864,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a75c77bd-5bca-4311-8174-725a936b3cd6_M7CH3_M7CH3" + "1afff96a-17f1-4149-a5bc-f877a84d9223_M12CH3_M12CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" ], "x-ms-correlation-request-id": [ - "71e7a507-09ab-4df2-a2e0-5fa274cc5792" + "03be7fb8-4c41-4452-afbe-7e57e41d9b38" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003222Z:71e7a507-09ab-4df2-a2e0-5fa274cc5792" + "WESTUS:20200511T083221Z:03be7fb8-4c41-4452-afbe-7e57e41d9b38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3891,23 +3885,26 @@ "nosniff" ], "Content-Length": [ - "0" + "438" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083\",\r\n \"name\": \"sdk-DisasterRecovery-9083\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011/failover?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExL2ZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-8156/disasterRecoveryConfigs/sdk-DisasterRecovery-9083?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTgxNTYvZGlzYXN0ZXJSZWNvdmVyeUNvbmZpZ3Mvc2RrLURpc2FzdGVyUmVjb3ZlcnktOTA4Mz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e4b7e76-60e5-4087-a933-cf5559782914" + "74327f52-dac6-4acc-9efc-3e41a0608774" ], "accept-language": [ "en-US" @@ -3915,8 +3912,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -3924,7 +3921,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:36:15 GMT" + "Mon, 11 May 2020 08:32:21 GMT" ], "Pragma": [ "no-cache" @@ -3934,19 +3931,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2ecb1066-f01b-4de1-9b50-64c9e18f0e72_M1CH3_M1CH3" + "021c4a0b-11f8-424e-9ad4-51979a25f5e2_M12CH3_M12CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-correlation-request-id": [ - "08a63c66-8da4-48cf-a095-a778c320c304" + "9416ed31-493f-469e-8c02-e8451d9d3ecb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003615Z:08a63c66-8da4-48cf-a095-a778c320c304" + "WESTUS:20200511T083221Z:9416ed31-493f-469e-8c02-e8451d9d3ecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3965,13 +3962,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-3593?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd558873-e2ef-4253-bd29-684aa88a8c71" + "22826ea7-7fae-4e11-9b25-6b463610284d" ], "accept-language": [ "en-US" @@ -3979,8 +3976,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, "ResponseHeaders": { @@ -3988,29 +3985,28 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:36 GMT" + "Mon, 11 May 2020 08:32:22 GMT" ], "Pragma": [ "no-cache" ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQzNTkzLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2015-11-01" ], - "x-ms-request-id": [ - "61e4ea2b-7c6c-4173-ba57-af0e54d4a77b_M3CH3_M3CH3" + "Retry-After": [ + "15" ], - "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "x-ms-request-id": [ + "e792f924-e3d1-43e8-8551-aa1889bb22d6" ], "x-ms-correlation-request-id": [ - "d77ee174-dd6a-4276-982a-e6ed3fd82c04" + "e792f924-e3d1-43e8-8551-aa1889bb22d6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003737Z:d77ee174-dd6a-4276-982a-e6ed3fd82c04" + "WESTUS:20200511T083222Z:e792f924-e3d1-43e8-8551-aa1889bb22d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4019,26 +4015,23 @@ "nosniff" ], "Content-Length": [ - "420" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/disasterrecoveryconfigs\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"partnerNamespace\": \"\",\r\n \"role\": \"PrimaryNotReplicating\",\r\n \"type\": \"MetadataReplication\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7173/disasterRecoveryConfigs/sdk-DisasterRecovery-5011?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItU291dGhDZW50cmFsVVMvcHJvdmlkZXJzL01pY3Jvc29mdC5FdmVudEh1Yi9uYW1lc3BhY2VzL3Nkay1OYW1lc3BhY2UtNzE3My9kaXNhc3RlclJlY292ZXJ5Q29uZmlncy9zZGstRGlzYXN0ZXJSZWNvdmVyeS01MDExP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzU5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTc0MjM/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33ed2a0f-d2ca-48fe-b0d3-47349ce2694c" + "9416f652-7bf3-4288-83f3-7b65e5504ca9" ], "accept-language": [ "en-US" @@ -4046,8 +4039,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -4055,29 +4048,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:37:38 GMT" + "Mon, 11 May 2020 08:32:23 GMT" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-3593/providers/Microsoft.EventHub/namespaces/sdk-NS-7423/operationresults/sdk-NS-7423?api-version=2018-01-01-preview" + ], "Server": [ "Service-Bus-Resource-Provider/CH3", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e3a11c6f-ec86-48b6-a562-c67544436a39_M7CH3_M7CH3" + "11fc039a-f3fb-4628-a5ba-9faf2d180d6f_M12CH3_M12CH3" ], "Server-SB": [ "Service-Bus-Resource-Provider/CH3" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "14998" ], "x-ms-correlation-request-id": [ - "c98e9311-0550-4e81-90da-ca65824d80e4" + "b288f717-a52e-462d-80d6-31dd30e4840f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T003738Z:c98e9311-0550-4e81-90da-ca65824d80e4" + "WESTUS:20200511T083223Z:b288f717-a52e-462d-80d6-31dd30e4840f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -4093,18 +4089,19 @@ ] }, "ResponseBody": "", - "StatusCode": 200 + "StatusCode": 202 } ], "Names": { "DisasterRecoveryCreateGetUpdateDelete": [ - "sdk-Namespace-3870", - "sdk-Namespace-7173", - "sdk-Authrules-5877", - "sdk-DisasterRecovery-5011" + "Default-EventHub-3593", + "sdk-NS-7423", + "sdk-NS-8156", + "sdk-Authrules-9528", + "sdk-DisasterRecovery-9083" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventCreateGetUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventCreateGetUpdateDelete.json index cf268f11e20d..a288a5cd20b7 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventCreateGetUpdateDelete.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventCreateGetUpdateDelete.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcb5375d-c7de-481d-b9e4-3680d3a9be76" + "2daabe26-5e74-4c3c-9233-28fa77658847" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,22 +24,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:26:27 GMT" + "Mon, 11 May 2020 07:11:32 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "3eada82a-17f4-4e24-a39a-fac37f5c45dd" + "33c4af4c-0f45-46ad-a2de-2d4792087162" ], "x-ms-correlation-request-id": [ - "3eada82a-17f4-4e24-a39a-fac37f5c45dd" + "33c4af4c-0f45-46ad-a2de-2d4792087162" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002628Z:3eada82a-17f4-4e24-a39a-fac37f5c45dd" + "WESTUS:20200511T071133Z:33c4af4c-0f45-46ad-a2de-2d4792087162" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "2435" + "3375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-7493?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5Mz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "acd7b909-cae0-4a3b-a0ff-9882a1e11afd" + "8baa1d1e-8e2f-46fb-b96f-a19c3ba45bf7" ], "accept-language": [ "en-US" @@ -75,8 +75,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" ] }, "ResponseHeaders": { @@ -84,22 +90,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:26:27 GMT" + "Mon, 11 May 2020 07:11:35 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "0ae26f0e-9733-4c29-b3fa-f1c366ddde06" + "5a525df8-7ca7-4288-b7de-f1b78bec9c2f" ], "x-ms-correlation-request-id": [ - "0ae26f0e-9733-4c29-b3fa-f1c366ddde06" + "5a525df8-7ca7-4288-b7de-f1b78bec9c2f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002628Z:0ae26f0e-9733-4c29-b3fa-f1c366ddde06" + "WESTUS:20200511T071135Z:5a525df8-7ca7-4288-b7de-f1b78bec9c2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +114,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493\",\r\n \"name\": \"Default-EventHub-7493\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6e4ba9e6-b51a-4cc2-9271-cd47aef9fbed" + "735552f9-065c-4bd6-830b-ba7af6002d45" ], "accept-language": [ "en-US" @@ -135,8 +141,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,29 +156,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:26:31 GMT" + "Mon, 11 May 2020 07:11:42 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e8975646-0593-43fd-8c44-e316c463c139_M9CH3_M9CH3" + "879aa714-9dac-4399-9b5d-e455b299d58a_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "16f4f860-9b44-4a3d-976f-88567b593191" + "ab1b26aa-2c74-465e-bc35-7067a48d622b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002632Z:16f4f860-9b44-4a3d-976f-88567b593191" + "WESTUS:20200511T071143Z:ab1b26aa-2c74-465e-bc35-7067a48d622b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,7 +187,7 @@ "nosniff" ], "Content-Length": [ - "727" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,20 +196,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044\",\r\n \"name\": \"sdk-Namespace-1044\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1044\",\r\n \"createdAt\": \"2019-02-01T00:26:30.76Z\",\r\n \"updatedAt\": \"2019-02-01T00:26:30.76Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1044.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285\",\r\n \"name\": \"sdk-NS-2285\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2285\",\r\n \"createdAt\": \"2020-05-11T07:11:41.91Z\",\r\n \"updatedAt\": \"2020-05-11T07:11:41.91Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2285.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -211,29 +217,90 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:27:01 GMT" + "Mon, 11 May 2020 07:12:12 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "0456e0f2-b997-4cf1-9573-84321f28fd36_M5CH3_M5CH3" + "bc6048fa-89ee-44ae-928b-8ae35e7cb1fd_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "46863649-8218-4f51-bc6e-9992be99d3ca" + "3ba751bf-dbdf-4f9d-a269-2cc0e331741f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T071213Z:3ba751bf-dbdf-4f9d-a269-2cc0e331741f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285\",\r\n \"name\": \"sdk-NS-2285\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2285\",\r\n \"createdAt\": \"2020-05-11T07:11:41.91Z\",\r\n \"updatedAt\": \"2020-05-11T07:11:41.91Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2285.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 07:12:42 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "63639165-272d-423e-bca5-5ea070aca6e3_M3SN1_M3SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "3b5c7063-e04e-46ca-b520-b582a0cc4d94" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002702Z:46863649-8218-4f51-bc6e-9992be99d3ca" + "WESTUS:20200511T071243Z:3b5c7063-e04e-46ca-b520-b582a0cc4d94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,7 +309,7 @@ "nosniff" ], "Content-Length": [ - "726" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,17 +318,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044\",\r\n \"name\": \"sdk-Namespace-1044\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1044\",\r\n \"createdAt\": \"2019-02-01T00:26:30.76Z\",\r\n \"updatedAt\": \"2019-02-01T00:27:02.123Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1044.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285\",\r\n \"name\": \"sdk-NS-2285\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2285\",\r\n \"createdAt\": \"2020-05-11T07:11:41.91Z\",\r\n \"updatedAt\": \"2020-05-11T07:12:25.65Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2285.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yODQ2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNjY3P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 4,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"intervalInSeconds\": 120,\r\n \"sizeLimitInBytes\": 10485763,\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 4,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"intervalInSeconds\": 120,\r\n \"sizeLimitInBytes\": 10485763,\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8ca4d9c4-6226-453b-b97f-5eb15844fb1a" + "ad0e8923-65aa-4e75-9959-942447bf986d" ], "accept-language": [ "en-US" @@ -269,14 +336,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "768" + "769" ] }, "ResponseHeaders": { @@ -284,29 +351,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:27:13 GMT" + "Mon, 11 May 2020 07:12:56 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1d266736-a889-4704-960f-1c67e13c7a14_M5CH3_M5CH3" + "379ce859-1297-4735-b540-b55e04d3a717_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "fb6cb906-71f9-46bc-8329-03284ca475ed" + "2f9e87ad-a2a6-4cf3-bf72-da16cd61c89d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002714Z:fb6cb906-71f9-46bc-8329-03284ca475ed" + "WESTUS:20200511T071256Z:2f9e87ad-a2a6-4cf3-bf72-da16cd61c89d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,7 +382,7 @@ "nosniff" ], "Content-Length": [ - "997" + "980" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,17 +391,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846\",\r\n \"name\": \"sdk-EventHub-2846\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 4,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:27:13.55Z\",\r\n \"updatedAt\": \"2019-02-01T00:27:14.11Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 120,\r\n \"sizeLimitInBytes\": 10485763,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667\",\r\n \"name\": \"sdk-EventHub-2667\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 4,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:12:55.34Z\",\r\n \"updatedAt\": \"2020-05-11T07:12:55.88Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 120,\r\n \"sizeLimitInBytes\": 10485763,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yODQ2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNjY3P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "247ac66d-bac4-45c6-8778-e98c42bc2a29" + "5554d362-9228-490c-861b-7125912eab5f" ], "accept-language": [ "en-US" @@ -342,14 +409,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "768" + "769" ] }, "ResponseHeaders": { @@ -357,29 +424,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:27:21 GMT" + "Mon, 11 May 2020 07:13:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f90294a6-efd4-421d-b938-401d4a3fe774_M9CH3_M9CH3" + "0f02770a-57d7-4ca6-8595-8c02cfb4ffc0_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "05915227-86a0-40a8-a9fd-3139de25bb74" + "cb6fca16-0d95-432e-9bdc-d9d5a03f1168" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002721Z:05915227-86a0-40a8-a9fd-3139de25bb74" + "WESTUS:20200511T071300Z:cb6fca16-0d95-432e-9bdc-d9d5a03f1168" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -388,7 +455,7 @@ "nosniff" ], "Content-Length": [ - "974" + "957" ], "Content-Type": [ "application/json; charset=utf-8" @@ -397,17 +464,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846\",\r\n \"name\": \"sdk-EventHub-2846\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"0001-01-01T00:00:00\",\r\n \"updatedAt\": \"0001-01-01T00:00:00\",\r\n \"partitionIds\": [],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667\",\r\n \"name\": \"sdk-EventHub-2667\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"0001-01-01T00:00:00\",\r\n \"updatedAt\": \"0001-01-01T00:00:00\",\r\n \"partitionIds\": [],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yODQ2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNjY3P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 6,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 6,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5416cc95-ded1-4a8d-9bdc-beeadd3353c9" + "21d69ff1-af67-4459-8750-39f80bb134e6" ], "accept-language": [ "en-US" @@ -415,14 +482,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "768" + "769" ] }, "ResponseHeaders": { @@ -430,29 +497,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:27:26 GMT" + "Mon, 11 May 2020 07:13:02 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e1d12b6b-b468-4173-853a-e8726d95beda_M2CH3_M2CH3" + "24d37f54-7eb0-477f-b6fc-a069d94f0a6a_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "003a24d3-351e-4c32-b6d9-b899915880fe" + "cc7087c7-a8be-48c4-aad9-95cb8bfbafbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002727Z:003a24d3-351e-4c32-b6d9-b899915880fe" + "WESTUS:20200511T071302Z:cc7087c7-a8be-48c4-aad9-95cb8bfbafbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -461,7 +528,7 @@ "nosniff" ], "Content-Length": [ - "974" + "957" ], "Content-Type": [ "application/json; charset=utf-8" @@ -470,17 +537,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846\",\r\n \"name\": \"sdk-EventHub-2846\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 6,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"0001-01-01T00:00:00\",\r\n \"updatedAt\": \"0001-01-01T00:00:00\",\r\n \"partitionIds\": [],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667\",\r\n \"name\": \"sdk-EventHub-2667\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 6,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"0001-01-01T00:00:00\",\r\n \"updatedAt\": \"0001-01-01T00:00:00\",\r\n \"partitionIds\": [],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yODQ2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNjY3P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3467f995-8c66-4bfe-8a6f-912216f0eda2" + "8c182506-b1ac-4f54-a414-21f27ada9241" ], "accept-language": [ "en-US" @@ -488,8 +555,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -497,29 +564,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:27:14 GMT" + "Mon, 11 May 2020 07:12:56 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "900a97a1-c7de-415c-ad0e-08c14026d9d4_M5CH3_M5CH3" + "b813f300-4528-4d90-85a1-f004477c2d56_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "3b5b85c5-0cb0-405c-807c-2720574eac35" + "1e250824-582d-4f84-abcc-2c642f266f56" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002715Z:3b5b85c5-0cb0-405c-807c-2720574eac35" + "WESTUS:20200511T071256Z:1e250824-582d-4f84-abcc-2c642f266f56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -528,7 +595,7 @@ "nosniff" ], "Content-Length": [ - "995" + "978" ], "Content-Type": [ "application/json; charset=utf-8" @@ -537,17 +604,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846\",\r\n \"name\": \"sdk-EventHub-2846\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 4,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:27:13.55\",\r\n \"updatedAt\": \"2019-02-01T00:27:14.11\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 120,\r\n \"sizeLimitInBytes\": 10485763,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667\",\r\n \"name\": \"sdk-EventHub-2667\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 4,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:12:55.34\",\r\n \"updatedAt\": \"2020-05-11T07:12:55.88\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 120,\r\n \"sizeLimitInBytes\": 10485763,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yODQ2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNjY3P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69a1d565-eb4b-40a9-9c14-d842d63c35c0" + "9bcd020b-51c9-4191-ad56-5996cc8e5f81" ], "accept-language": [ "en-US" @@ -555,8 +622,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -564,29 +631,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:27:27 GMT" + "Mon, 11 May 2020 07:13:02 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7855e8e5-d8a3-4c98-b1ed-6ee6411c2ca2_M2CH3_M2CH3" + "41f763ef-d645-4866-be2c-8ecd0ccdd5a7_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "59702f97-973a-4148-99a6-0ad49cc1fcc7" + "170382b5-fae9-4f96-bbda-e33b8625b59f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002727Z:59702f97-973a-4148-99a6-0ad49cc1fcc7" + "WESTUS:20200511T071302Z:170382b5-fae9-4f96-bbda-e33b8625b59f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +662,7 @@ "nosniff" ], "Content-Length": [ - "996" + "978" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,17 +671,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846\",\r\n \"name\": \"sdk-EventHub-2846\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 6,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:27:13.55\",\r\n \"updatedAt\": \"2019-02-01T00:27:27.237\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667\",\r\n \"name\": \"sdk-EventHub-2667\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 6,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:12:55.34\",\r\n \"updatedAt\": \"2020-05-11T07:13:02.09\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 130,\r\n \"sizeLimitInBytes\": 10485900,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODUvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8620c8b2-555c-4e73-b9c6-0018432b7d6f" + "79160b91-6884-412f-9349-82343da270a4" ], "accept-language": [ "en-US" @@ -622,8 +689,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -631,32 +698,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:27:15 GMT" + "Mon, 11 May 2020 07:12:57 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "231fb00f-7ad5-4e53-a7d4-e612f05eac67_M5CH3_M5CH3" + "1ff515ba-45af-4543-978f-90d804ad7a26_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "641550b3-b525-434f-94c7-4117feda4459" + "b7ff1a88-c771-45c4-8330-8536a1952f41" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002716Z:641550b3-b525-434f-94c7-4117feda4459" + "WESTUS:20200511T071257Z:b7ff1a88-c771-45c4-8330-8536a1952f41" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -665,7 +732,7 @@ "nosniff" ], "Content-Length": [ - "1007" + "990" ], "Content-Type": [ "application/json; charset=utf-8" @@ -674,17 +741,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-eventhub-2846\",\r\n \"name\": \"sdk-eventhub-2846\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 4,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:27:13.55\",\r\n \"updatedAt\": \"2019-02-01T00:27:14.11\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 120,\r\n \"sizeLimitInBytes\": 10485763,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-eventhub-2667\",\r\n \"name\": \"sdk-eventhub-2667\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 4,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:12:55.34\",\r\n \"updatedAt\": \"2020-05-11T07:12:55.88\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ],\r\n \"captureDescription\": {\r\n \"enabled\": true,\r\n \"encoding\": \"Avro\",\r\n \"destination\": {\r\n \"name\": \"EventHubArchive.AzureBlockBlob\",\r\n \"properties\": {\r\n \"storageAccountResourceId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew\",\r\n \"blobContainer\": \"container\",\r\n \"archiveNameFormat\": \"{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}\"\r\n }\r\n },\r\n \"intervalInSeconds\": 120,\r\n \"sizeLimitInBytes\": 10485763,\r\n \"skipEmptyArchives\": true\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/eventhubs/sdk-EventHub-2846?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yODQ2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/eventhubs/sdk-EventHub-2667?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0yNjY3P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5973cafb-89e0-4887-b430-91d109cce17a" + "49f21ee5-3cda-4f5e-9e5b-6899126fa1a8" ], "accept-language": [ "en-US" @@ -692,8 +759,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -701,29 +768,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:27:28 GMT" + "Mon, 11 May 2020 07:13:04 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "da617a65-02bd-4417-a001-0fda9f237d70_M2CH3_M2CH3" + "8b1e69ae-ddbe-4ee9-8f3d-9e9310cb9551_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "a6872ddb-ae75-4c7d-aab9-253579003bcc" + "aa030504-462f-48a3-bb44-0c3bdfe37482" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002729Z:a6872ddb-ae75-4c7d-aab9-253579003bcc" + "WESTUS:20200511T071304Z:aa030504-462f-48a3-bb44-0c3bdfe37482" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -742,13 +809,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a00bdf8c-8f7b-40f5-8ad6-d9037cc84d58" + "3053fdb6-767c-4cd9-90dc-95a507b4e2ee" ], "accept-language": [ "en-US" @@ -756,8 +823,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -765,32 +832,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:27:36 GMT" + "Mon, 11 May 2020 07:13:10 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/operationresults/sdk-Namespace-1044?api-version=2017-04-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/operationresults/sdk-NS-2285?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ab318778-0620-44ad-ad19-36056f30bbee_M5CH3_M5CH3" + "626cb044-c816-409c-afcb-674a2be9aa83_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "d8eee0d4-d4dd-4e07-924e-685313a5544a" + "51944a30-fd7c-4f5b-bd8e-ac5ab6edde75" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002736Z:d8eee0d4-d4dd-4e07-924e-685313a5544a" + "WESTUS:20200511T071310Z:51944a30-fd7c-4f5b-bd8e-ac5ab6edde75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -809,16 +876,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/operationresults/sdk-Namespace-1044?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTEwNDQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/operationresults/sdk-NS-2285?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjI4NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -826,29 +893,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:28:05 GMT" + "Mon, 11 May 2020 07:13:40 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "529e08a7-ccee-41a5-abc0-c96e9caf2f9c_M6CH3_M6CH3" + "6bc337d5-d290-4a25-8231-7e6986e0d094_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "bf433b89-c2da-429d-a416-f71ebec47ac5" + "46f4cd1d-81ef-4f08-91be-68a960bbfc99" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002806Z:bf433b89-c2da-429d-a416-f71ebec47ac5" + "WESTUS:20200511T071340Z:46f4cd1d-81ef-4f08-91be-68a960bbfc99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,16 +934,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1044/operationresults/sdk-Namespace-1044?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTEwNDQvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTEwNDQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7493/providers/Microsoft.EventHub/namespaces/sdk-NS-2285/operationresults/sdk-NS-2285?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzQ5My9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTIyODUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjI4NT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -884,29 +951,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:28:05 GMT" + "Mon, 11 May 2020 07:13:40 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3fb4c6f5-4a58-4c99-ad7d-c9c56ae2321f_M6CH3_M6CH3" + "837d0704-3a96-4306-90f2-66e80d5128c1_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "eb439bdf-4b62-44a5-9274-3e73ed3bfa56" + "1b654fc8-9735-44d3-a09b-8905de6dbe21" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002806Z:eb439bdf-4b62-44a5-9274-3e73ed3bfa56" + "WESTUS:20200511T071340Z:1b654fc8-9735-44d3-a09b-8905de6dbe21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -927,11 +994,12 @@ ], "Names": { "EventCreateGetUpdateDelete": [ - "sdk-Namespace-1044", - "sdk-EventHub-2846" + "Default-EventHub-7493", + "sdk-NS-2285", + "sdk-EventHub-2667" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventHubskiptop.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventHubskiptop.json index 2740795d1a9f..c3d42326d948 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventHubskiptop.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventHubskiptop.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8513f51c-8332-4f21-af1b-137c145f3591" + "fb76d092-543d-4d43-8e31-3d3a39694c9c" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,7 +24,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:22:16 GMT" + "Mon, 11 May 2020 07:08:47 GMT" ], "Pragma": [ "no-cache" @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "9e449287-deae-4254-a9e3-80dda8d6d5ea" + "5bd35e7d-3632-48bc-a89b-26f9917ea034" ], "x-ms-correlation-request-id": [ - "9e449287-deae-4254-a9e3-80dda8d6d5ea" + "5bd35e7d-3632-48bc-a89b-26f9917ea034" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002216Z:9e449287-deae-4254-a9e3-80dda8d6d5ea" + "WESTUS:20200511T070847Z:5bd35e7d-3632-48bc-a89b-26f9917ea034" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "2435" + "3375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4967?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a93d5f3-0c88-49ee-99c3-a7dfe5da6f2d" + "2fb6f947-ecd9-476f-90d5-70f01cb1e24a" ], "accept-language": [ "en-US" @@ -75,7 +75,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -84,22 +84,91 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:22:16 GMT" + "Mon, 11 May 2020 07:08:47 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ0OTY3LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "532b5147-4d1e-4626-aad9-d16c3811e487" + ], + "x-ms-correlation-request-id": [ + "532b5147-4d1e-4626-aad9-d16c3811e487" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T070848Z:532b5147-4d1e-4626-aad9-d16c3811e487" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2187?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a9dd276d-e2d5-4fc0-913e-c1387d7fc437" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 07:08:49 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "67d9c706-c11f-4ed9-a255-cc7eb4f135ed" + "3adb5ce0-37a3-4d60-ab30-cce7cb65cb4e" ], "x-ms-correlation-request-id": [ - "67d9c706-c11f-4ed9-a255-cc7eb4f135ed" + "3adb5ce0-37a3-4d60-ab30-cce7cb65cb4e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002217Z:67d9c706-c11f-4ed9-a255-cc7eb4f135ed" + "WESTUS:20200511T070849Z:3adb5ce0-37a3-4d60-ab30-cce7cb65cb4e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +177,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,17 +186,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187\",\r\n \"name\": \"Default-EventHub-2187\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19a81bf3-cc42-49b4-a258-fdb2fc02ab8e" + "e104c2c1-16f1-4802-a5a0-f1f85e708ca2" ], "accept-language": [ "en-US" @@ -135,8 +204,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,29 +219,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:22:20 GMT" + "Mon, 11 May 2020 07:08:56 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e9bd74a9-e80c-4525-80c8-ed59fa50fbf7_M10CH3_M10CH3" + "34ecdcfd-f8ab-4818-b31e-94c37c156955_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "c9853810-40e7-46ed-aca2-aff92f8f8141" + "35932071-c8ff-4dac-8ced-db3d1243ef44" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002220Z:c9853810-40e7-46ed-aca2-aff92f8f8141" + "WESTUS:20200511T070857Z:35932071-c8ff-4dac-8ced-db3d1243ef44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,7 +250,7 @@ "nosniff" ], "Content-Length": [ - "727" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,20 +259,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684\",\r\n \"name\": \"sdk-Namespace-3684\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3684\",\r\n \"createdAt\": \"2019-02-01T00:22:19.63Z\",\r\n \"updatedAt\": \"2019-02-01T00:22:19.63Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3684.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925\",\r\n \"name\": \"sdk-NS-4925\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4925\",\r\n \"createdAt\": \"2020-05-11T07:08:55.68Z\",\r\n \"updatedAt\": \"2020-05-11T07:08:55.68Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4925.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -211,29 +280,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:22:50 GMT" + "Mon, 11 May 2020 07:09:27 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c9092ff8-d860-48a6-b403-9263c37132aa_M7CH3_M7CH3" + "35dbdb20-374f-4603-bbb3-44074cabaa48_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "0e186157-cabb-4c79-a1de-c4582739af72" + "52fdeeb9-8e5e-497f-9a7e-1f0c0c647f46" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002251Z:0e186157-cabb-4c79-a1de-c4582739af72" + "WESTUS:20200511T070927Z:52fdeeb9-8e5e-497f-9a7e-1f0c0c647f46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,7 +311,7 @@ "nosniff" ], "Content-Length": [ - "727" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,20 +320,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684\",\r\n \"name\": \"sdk-Namespace-3684\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3684\",\r\n \"createdAt\": \"2019-02-01T00:22:19.63Z\",\r\n \"updatedAt\": \"2019-02-01T00:22:19.63Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3684.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925\",\r\n \"name\": \"sdk-NS-4925\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4925\",\r\n \"createdAt\": \"2020-05-11T07:08:55.68Z\",\r\n \"updatedAt\": \"2020-05-11T07:08:55.68Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4925.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -272,29 +341,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:21 GMT" + "Mon, 11 May 2020 07:09:56 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "12fa3f64-83e6-422d-9ee9-f2390995deb1_M8CH3_M8CH3" + "0e383440-ee1d-42e5-b53a-4d60e0709b38_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "07d9b918-a82b-4b55-bf74-84a2d3d35c19" + "55703927-1260-4d9c-bfce-1ead7578a7e3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002321Z:07d9b918-a82b-4b55-bf74-84a2d3d35c19" + "WESTUS:20200511T070957Z:55703927-1260-4d9c-bfce-1ead7578a7e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +372,7 @@ "nosniff" ], "Content-Length": [ - "726" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -312,17 +381,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684\",\r\n \"name\": \"sdk-Namespace-3684\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3684\",\r\n \"createdAt\": \"2019-02-01T00:22:19.63Z\",\r\n \"updatedAt\": \"2019-02-01T00:22:51.153Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3684.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925\",\r\n \"name\": \"sdk-NS-4925\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4925\",\r\n \"createdAt\": \"2020-05-11T07:08:55.68Z\",\r\n \"updatedAt\": \"2020-05-11T07:09:42.463Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4925.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_0?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4XzA/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_0?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1XzA/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "0a9b2ab1-b871-418b-be15-c832a1846b87" + "3c1d6185-1998-4bc6-af53-c1e08d3a3d26" ], "accept-language": [ "en-US" @@ -330,8 +399,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -345,29 +414,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:30 GMT" + "Mon, 11 May 2020 07:10:05 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "29750bbf-c921-4fc9-a10b-f1bd6a220aad_M6CH3_M6CH3" + "6e86a2ba-e9fe-49b2-a68d-c6a3f2ff2da6_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "974d1fa2-be2c-41c1-9f91-6b29b55d414a" + "d85c243c-23aa-4a02-a3d8-e32eadc02eec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002330Z:974d1fa2-be2c-41c1-9f91-6b29b55d414a" + "WESTUS:20200511T071006Z:d85c243c-23aa-4a02-a3d8-e32eadc02eec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,7 +445,7 @@ "nosniff" ], "Content-Length": [ - "492" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,17 +454,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_0\",\r\n \"name\": \"sdk-EventHub-1448_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:30.063Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:30.28Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_0\",\r\n \"name\": \"sdk-EventHub-8525_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:04.897Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:05.63Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_1?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4XzE/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_1?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1XzE/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "0d6012e7-0dd6-4f6e-aaec-2033c3753260" + "f364585b-1dd0-415f-8179-141298d7c5a2" ], "accept-language": [ "en-US" @@ -403,8 +472,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -418,29 +487,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:33 GMT" + "Mon, 11 May 2020 07:10:08 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1e2e941d-fb99-4122-96d3-22b1f67e28dc_M6CH3_M6CH3" + "57265393-8a38-4508-9324-a2e78d8338e4_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "5f3ccaba-ecf7-4906-b6e5-92efdc07d768" + "4910b417-9da5-4633-bcc0-37ea20cb191b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002334Z:5f3ccaba-ecf7-4906-b6e5-92efdc07d768" + "WESTUS:20200511T071008Z:4910b417-9da5-4633-bcc0-37ea20cb191b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,7 +518,7 @@ "nosniff" ], "Content-Length": [ - "493" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -458,17 +527,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_1\",\r\n \"name\": \"sdk-EventHub-1448_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:33.187Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:33.423Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_1\",\r\n \"name\": \"sdk-EventHub-8525_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:07.81Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:08.017Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_2?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4XzI/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_2?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1XzI/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "486faea4-51ad-47ad-8ff6-2cd0f8b10ab7" + "702fcef3-2196-4f72-8025-d8d49d66a52b" ], "accept-language": [ "en-US" @@ -476,8 +545,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -491,29 +560,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:37 GMT" + "Mon, 11 May 2020 07:10:10 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "be240323-7cc2-46a9-b3c2-7936ae2d97bf_M8CH3_M8CH3" + "b25c68a5-1d3c-4914-bef8-053ee59a93d0_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "45db4418-e127-4f31-8d5d-af990c2ab70a" + "c11f4a11-48df-4507-a76e-e471fbc1bf0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002337Z:45db4418-e127-4f31-8d5d-af990c2ab70a" + "WESTUS:20200511T071011Z:c11f4a11-48df-4507-a76e-e471fbc1bf0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +591,7 @@ "nosniff" ], "Content-Length": [ - "491" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,17 +600,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_2\",\r\n \"name\": \"sdk-EventHub-1448_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:37.08Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:37.33Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_2\",\r\n \"name\": \"sdk-EventHub-8525_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:10.48Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:10.897Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_3?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4XzM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_3?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1XzM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "e4524ab0-0f9b-4530-a315-af2bfc7aacd8" + "22b20f08-0578-4073-805e-9b99ee773264" ], "accept-language": [ "en-US" @@ -549,8 +618,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,29 +633,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:39 GMT" + "Mon, 11 May 2020 07:10:13 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "54857e1b-b177-4a1f-9e3d-30112cf58e38_M6CH3_M6CH3" + "b51e0f10-261d-47b5-a745-7de113f18356_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-correlation-request-id": [ - "36a13cf7-2d70-4842-ae47-ab6e0bc5ea63" + "80420c99-232a-4e91-8966-b625c8fb8c71" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002340Z:36a13cf7-2d70-4842-ae47-ab6e0bc5ea63" + "WESTUS:20200511T071014Z:80420c99-232a-4e91-8966-b625c8fb8c71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +664,7 @@ "nosniff" ], "Content-Length": [ - "492" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,17 +673,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_3\",\r\n \"name\": \"sdk-EventHub-1448_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:39.64Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:39.877Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_3\",\r\n \"name\": \"sdk-EventHub-8525_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:13.307Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:13.55Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_4?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4XzQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_4?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1XzQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "4ccb4d25-8773-40c6-b6e9-ccb330ea23e9" + "be15acca-fec3-4b5f-82e3-3d186ec612b9" ], "accept-language": [ "en-US" @@ -622,8 +691,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -637,29 +706,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:42 GMT" + "Mon, 11 May 2020 07:10:16 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1c8a6eae-3854-4dca-8942-73832119c58a_M6CH3_M6CH3" + "1f9ad785-681c-4528-961d-4d52cb1cc9f9_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1195" ], "x-ms-correlation-request-id": [ - "433535ea-43ae-4419-bb85-d910863cd1bf" + "f62b8752-7d26-4553-aa85-1d083dd2839f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002343Z:433535ea-43ae-4419-bb85-d910863cd1bf" + "WESTUS:20200511T071017Z:f62b8752-7d26-4553-aa85-1d083dd2839f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -668,7 +737,7 @@ "nosniff" ], "Content-Length": [ - "492" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -677,17 +746,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_4\",\r\n \"name\": \"sdk-EventHub-1448_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:42.673Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:42.86Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_4\",\r\n \"name\": \"sdk-EventHub-8525_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:16.027Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:16.44Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_5?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4XzU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_5?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1XzU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "0e5e06c2-485d-4dee-8cf9-4ed0bc61557d" + "8b341f1f-fc5a-45e9-9cdb-f2f7b8f601b5" ], "accept-language": [ "en-US" @@ -695,8 +764,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -710,29 +779,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:45 GMT" + "Mon, 11 May 2020 07:10:18 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "436071a5-178f-45b7-8644-591997ee7a93_M6CH3_M6CH3" + "55d69152-9f42-4ab0-a25c-d1fab98039bf_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1194" ], "x-ms-correlation-request-id": [ - "f620ed7d-3487-4fd6-8443-b87d051d82d1" + "fda83e0a-ea4e-446e-81b3-b9d6f71a2536" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002346Z:f620ed7d-3487-4fd6-8443-b87d051d82d1" + "WESTUS:20200511T071019Z:fda83e0a-ea4e-446e-81b3-b9d6f71a2536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,7 +810,7 @@ "nosniff" ], "Content-Length": [ - "490" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -750,17 +819,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_5\",\r\n \"name\": \"sdk-EventHub-1448_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:45.5Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:45.72Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_5\",\r\n \"name\": \"sdk-EventHub-8525_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:18.59Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:18.933Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_6?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4XzY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_6?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1XzY/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "4b70b232-c2cc-4a72-9f0c-82b868255928" + "a60b4d4b-84df-4a07-a3d3-64a808afdc43" ], "accept-language": [ "en-US" @@ -768,8 +837,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -783,29 +852,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:48 GMT" + "Mon, 11 May 2020 07:10:21 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "23c9171c-051a-4522-b3e4-79bbeaf3881d_M8CH3_M8CH3" + "29633d89-b9ed-4763-9d24-eb5c11526c64_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1193" ], "x-ms-correlation-request-id": [ - "cb23764e-2787-4436-9483-312186b58074" + "39143ee2-d70e-4f43-a08f-5fc49be48660" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002349Z:cb23764e-2787-4436-9483-312186b58074" + "WESTUS:20200511T071022Z:39143ee2-d70e-4f43-a08f-5fc49be48660" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -814,7 +883,7 @@ "nosniff" ], "Content-Length": [ - "492" + "474" ], "Content-Type": [ "application/json; charset=utf-8" @@ -823,17 +892,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_6\",\r\n \"name\": \"sdk-EventHub-1448_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:48.233Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:48.53Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_6\",\r\n \"name\": \"sdk-EventHub-8525_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:21.087Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:21.42Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_7?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4Xzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_7?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1Xzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "06f22d29-a33f-4b70-8074-fe6505b548e8" + "fe9f83d4-b85b-46ca-a91a-735b3e7d5091" ], "accept-language": [ "en-US" @@ -841,8 +910,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -856,29 +925,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:51 GMT" + "Mon, 11 May 2020 07:10:24 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f5713fcc-e955-4d03-a24b-a8da248eedc4_M6CH3_M6CH3" + "17ad1657-60ba-486c-9ec3-6819ac0456f1_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1192" ], "x-ms-correlation-request-id": [ - "d60d6240-3a46-414a-bbac-01a05b3264e2" + "e01a4cdf-0392-4e4e-90a2-a65ec10d59c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002351Z:d60d6240-3a46-414a-bbac-01a05b3264e2" + "WESTUS:20200511T071025Z:e01a4cdf-0392-4e4e-90a2-a65ec10d59c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -887,7 +956,7 @@ "nosniff" ], "Content-Length": [ - "493" + "475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -896,17 +965,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_7\",\r\n \"name\": \"sdk-EventHub-1448_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:50.953Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:51.173Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_7\",\r\n \"name\": \"sdk-EventHub-8525_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:23.593Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:24.783Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_8?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4Xzg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_8?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1Xzg/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "59a7fd74-24e8-49c8-b32c-d11bf12b5c75" + "b6ba795d-fa08-4560-9bf8-f89ee598543b" ], "accept-language": [ "en-US" @@ -914,8 +983,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -929,29 +998,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:54 GMT" + "Mon, 11 May 2020 07:10:27 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d3da78e2-847f-4c30-abac-1f834433aa7c_M1CH3_M1CH3" + "45e7ee3b-1398-4e25-a4ef-92aa3e97c93f_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1191" ], "x-ms-correlation-request-id": [ - "df73ed92-3e2d-493e-aa02-38e972921596" + "0052593d-0f0b-489c-964a-840378cc9bef" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002355Z:df73ed92-3e2d-493e-aa02-38e972921596" + "WESTUS:20200511T071027Z:0052593d-0f0b-489c-964a-840378cc9bef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -960,7 +1029,7 @@ "nosniff" ], "Content-Length": [ - "492" + "475" ], "Content-Type": [ "application/json; charset=utf-8" @@ -969,17 +1038,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_8\",\r\n \"name\": \"sdk-EventHub-1448_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:54.83Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:55.047Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_8\",\r\n \"name\": \"sdk-EventHub-8525_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:26.873Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:27.113Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_9?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0xNDQ4Xzk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_9?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi04NTI1Xzk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "d6eaf088-f863-4b2c-a9f8-536326c07526" + "8146d4d4-5bb2-4405-b83f-dd2fc6f857fd" ], "accept-language": [ "en-US" @@ -987,8 +1056,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1002,29 +1071,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:57 GMT" + "Mon, 11 May 2020 07:10:30 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d967449d-e133-44ac-bb5d-de35955b60c5_M1CH3_M1CH3" + "9b4e9b8d-ce9f-4d05-bca2-bc03c693b16a_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1190" ], "x-ms-correlation-request-id": [ - "69972fc6-4585-4374-9c17-ab91e44ecb22" + "59597b8d-78e0-4d76-8ec9-ebd58ec4d32b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002358Z:69972fc6-4585-4374-9c17-ab91e44ecb22" + "WESTUS:20200511T071031Z:59597b8d-78e0-4d76-8ec9-ebd58ec4d32b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1033,7 +1102,7 @@ "nosniff" ], "Content-Length": [ - "493" + "473" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1042,17 +1111,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-EventHub-1448_9\",\r\n \"name\": \"sdk-EventHub-1448_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:57.937Z\",\r\n \"updatedAt\": \"2019-02-01T00:23:58.157Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-EventHub-8525_9\",\r\n \"name\": \"sdk-EventHub-8525_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:30.34Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:30.59Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "850ff0f7-dae4-4594-b28d-d395705689fc" + "ad2a987c-2f23-4fba-a649-5acef5089c88" ], "accept-language": [ "en-US" @@ -1060,8 +1129,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1069,32 +1138,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:58 GMT" + "Mon, 11 May 2020 07:10:31 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "2ce94265-c5c0-4e3d-a331-c1a40e01e3d0_M1CH3_M1CH3" + "5ac24ba9-0a8e-449c-8245-1ad93d28ce78_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "33dd2315-8a06-44e7-bd58-5c202b882713" + "54f8aa3e-fc97-4f8b-a558-3e6101dd7f98" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002359Z:33dd2315-8a06-44e7-bd58-5c202b882713" + "WESTUS:20200511T071031Z:54f8aa3e-fc97-4f8b-a558-3e6101dd7f98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1103,7 +1172,7 @@ "nosniff" ], "Content-Length": [ - "4921" + "4742" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1112,17 +1181,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0\",\r\n \"name\": \"sdk-eventhub-1448_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:30.063\",\r\n \"updatedAt\": \"2019-02-01T00:23:30.28\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_1\",\r\n \"name\": \"sdk-eventhub-1448_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:33.187\",\r\n \"updatedAt\": \"2019-02-01T00:23:33.423\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_2\",\r\n \"name\": \"sdk-eventhub-1448_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:37.08\",\r\n \"updatedAt\": \"2019-02-01T00:23:37.33\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_3\",\r\n \"name\": \"sdk-eventhub-1448_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:39.64\",\r\n \"updatedAt\": \"2019-02-01T00:23:39.877\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_4\",\r\n \"name\": \"sdk-eventhub-1448_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:42.673\",\r\n \"updatedAt\": \"2019-02-01T00:23:42.86\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_5\",\r\n \"name\": \"sdk-eventhub-1448_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:45.5\",\r\n \"updatedAt\": \"2019-02-01T00:23:45.72\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_6\",\r\n \"name\": \"sdk-eventhub-1448_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:48.233\",\r\n \"updatedAt\": \"2019-02-01T00:23:48.53\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_7\",\r\n \"name\": \"sdk-eventhub-1448_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:50.953\",\r\n \"updatedAt\": \"2019-02-01T00:23:51.173\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_8\",\r\n \"name\": \"sdk-eventhub-1448_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:54.83\",\r\n \"updatedAt\": \"2019-02-01T00:23:55.047\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_9\",\r\n \"name\": \"sdk-eventhub-1448_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:57.937\",\r\n \"updatedAt\": \"2019-02-01T00:23:58.157\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0\",\r\n \"name\": \"sdk-eventhub-8525_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:04.897\",\r\n \"updatedAt\": \"2020-05-11T07:10:05.63\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_1\",\r\n \"name\": \"sdk-eventhub-8525_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:07.81\",\r\n \"updatedAt\": \"2020-05-11T07:10:08.017\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_2\",\r\n \"name\": \"sdk-eventhub-8525_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:10.48\",\r\n \"updatedAt\": \"2020-05-11T07:10:10.897\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_3\",\r\n \"name\": \"sdk-eventhub-8525_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:13.307\",\r\n \"updatedAt\": \"2020-05-11T07:10:13.55\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_4\",\r\n \"name\": \"sdk-eventhub-8525_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:16.027\",\r\n \"updatedAt\": \"2020-05-11T07:10:16.44\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_5\",\r\n \"name\": \"sdk-eventhub-8525_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:18.59\",\r\n \"updatedAt\": \"2020-05-11T07:10:18.933\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_6\",\r\n \"name\": \"sdk-eventhub-8525_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:21.087\",\r\n \"updatedAt\": \"2020-05-11T07:10:21.42\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_7\",\r\n \"name\": \"sdk-eventhub-8525_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:23.593\",\r\n \"updatedAt\": \"2020-05-11T07:10:24.783\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_8\",\r\n \"name\": \"sdk-eventhub-8525_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:26.873\",\r\n \"updatedAt\": \"2020-05-11T07:10:27.113\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_9\",\r\n \"name\": \"sdk-eventhub-8525_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:30.34\",\r\n \"updatedAt\": \"2020-05-11T07:10:30.59\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs?api-version=2017-04-01&$skip=5&$top=5", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDEmJHNraXA9NSYkdG9wPTU=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs?api-version=2017-04-01&$skip=5&$top=5", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDEmJHNraXA9NSYkdG9wPTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d91994b-d542-42d7-b404-7f31a432f102" + "46e7a81a-fccb-4824-8ebd-25c82ff23b1d" ], "accept-language": [ "en-US" @@ -1130,8 +1199,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1139,32 +1208,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:23:59 GMT" + "Mon, 11 May 2020 07:10:31 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "f1012ae1-3a9e-4530-b312-dcbf97053de6_M6CH3_M6CH3" + "1c041995-1a51-410e-8a64-bcc667c3bcaf_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "24a8eb07-00c1-40f1-84d0-11affc01c513" + "6babf161-77e2-4720-ad28-fec71d26d426" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002400Z:24a8eb07-00c1-40f1-84d0-11affc01c513" + "WESTUS:20200511T071032Z:6babf161-77e2-4720-ad28-fec71d26d426" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,7 +1242,7 @@ "nosniff" ], "Content-Length": [ - "2466" + "2377" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1182,17 +1251,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_5\",\r\n \"name\": \"sdk-eventhub-1448_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:45.5\",\r\n \"updatedAt\": \"2019-02-01T00:23:45.72\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_6\",\r\n \"name\": \"sdk-eventhub-1448_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:48.233\",\r\n \"updatedAt\": \"2019-02-01T00:23:48.53\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_7\",\r\n \"name\": \"sdk-eventhub-1448_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:50.953\",\r\n \"updatedAt\": \"2019-02-01T00:23:51.173\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_8\",\r\n \"name\": \"sdk-eventhub-1448_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:54.83\",\r\n \"updatedAt\": \"2019-02-01T00:23:55.047\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_9\",\r\n \"name\": \"sdk-eventhub-1448_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:23:57.937\",\r\n \"updatedAt\": \"2019-02-01T00:23:58.157\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_5\",\r\n \"name\": \"sdk-eventhub-8525_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:18.59\",\r\n \"updatedAt\": \"2020-05-11T07:10:18.933\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_6\",\r\n \"name\": \"sdk-eventhub-8525_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:21.087\",\r\n \"updatedAt\": \"2020-05-11T07:10:21.42\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_7\",\r\n \"name\": \"sdk-eventhub-8525_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:23.593\",\r\n \"updatedAt\": \"2020-05-11T07:10:24.783\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_8\",\r\n \"name\": \"sdk-eventhub-8525_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:26.873\",\r\n \"updatedAt\": \"2020-05-11T07:10:27.113\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_9\",\r\n \"name\": \"sdk-eventhub-8525_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 7,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:10:30.34\",\r\n \"updatedAt\": \"2020-05-11T07:10:30.59\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_0?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N18wP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_0?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV8wP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "43cf9be3-3dc2-4fb3-8543-2a438051e156" + "77185aa2-5155-4068-8c7c-344926489e86" ], "accept-language": [ "en-US" @@ -1200,8 +1269,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1215,29 +1284,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:01 GMT" + "Mon, 11 May 2020 07:10:33 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "12cb52dc-6a6a-43e8-81f8-918f197a5d5a_M8CH3_M8CH3" + "82219fd7-f0cd-4782-92cc-65a0abf0f3b0_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1189" ], "x-ms-correlation-request-id": [ - "b8fe6cad-f9ba-4130-8f91-377d5963098e" + "959d821c-7775-4db5-a1b2-8c6336aade58" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002402Z:b8fe6cad-f9ba-4130-8f91-377d5963098e" + "WESTUS:20200511T071034Z:959d821c-7775-4db5-a1b2-8c6336aade58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1246,7 +1315,7 @@ "nosniff" ], "Content-Length": [ - "464" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1255,17 +1324,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_0\",\r\n \"name\": \"sdk-ConsumerGroup-9047_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:02.2071312Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:02.2071312Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_0\",\r\n \"name\": \"sdk-ConsumerGroup-4031_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:33.9712127Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:33.9712127Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_1?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N18xP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_1?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV8xP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "97d7d1fb-9bf0-4aa2-8a37-9bf1be680a00" + "0fd8536f-13c5-41fd-b959-18902e30cac1" ], "accept-language": [ "en-US" @@ -1273,8 +1342,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1288,29 +1357,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:03 GMT" + "Mon, 11 May 2020 07:10:35 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "932013b3-7341-48aa-987d-9374b7445455_M6CH3_M6CH3" + "1088607a-80ab-4d53-a747-2615facbfbed_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1188" ], "x-ms-correlation-request-id": [ - "dcdd6b3a-613f-42e0-bd8a-e95c81a6298c" + "cf7d6bac-1119-46e7-91ab-05636408aac0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002404Z:dcdd6b3a-613f-42e0-bd8a-e95c81a6298c" + "WESTUS:20200511T071036Z:cf7d6bac-1119-46e7-91ab-05636408aac0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1319,7 +1388,7 @@ "nosniff" ], "Content-Length": [ - "464" + "444" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1328,17 +1397,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_1\",\r\n \"name\": \"sdk-ConsumerGroup-9047_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:04.5705885Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:04.5705885Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_1\",\r\n \"name\": \"sdk-ConsumerGroup-4031_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:36.456411Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:36.456411Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_2?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N18yP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_2?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV8yP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "fb86baa8-f1a1-4a22-afad-b3aa87053ede" + "f36ef4c6-aa52-4788-a38e-9a91c180c4c6" ], "accept-language": [ "en-US" @@ -1346,8 +1415,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1361,29 +1430,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:06 GMT" + "Mon, 11 May 2020 07:10:37 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "11a93d71-0835-4e69-a561-5203e92168d1_M6CH3_M6CH3" + "e53eb269-20f7-4f31-8c49-927f8b39a708_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1187" ], "x-ms-correlation-request-id": [ - "f1147227-d165-466f-a95b-7f9b0ce8fae2" + "669c8a9f-2b82-4d17-94b1-122717e54d0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002406Z:f1147227-d165-466f-a95b-7f9b0ce8fae2" + "WESTUS:20200511T071038Z:669c8a9f-2b82-4d17-94b1-122717e54d0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1461,7 @@ "nosniff" ], "Content-Length": [ - "464" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1401,17 +1470,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_2\",\r\n \"name\": \"sdk-ConsumerGroup-9047_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:06.6647829Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:06.6647829Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_2\",\r\n \"name\": \"sdk-ConsumerGroup-4031_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:38.1794229Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:38.1794229Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_3?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N18zP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_3?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV8zP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "0c023eba-dc14-4ac6-bdcf-f2672e863377" + "e6398f56-6ab1-4230-8adf-d0ecc45cad24" ], "accept-language": [ "en-US" @@ -1419,8 +1488,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1434,29 +1503,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:08 GMT" + "Mon, 11 May 2020 07:10:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "867dad5a-0461-4220-92b9-d15868d6ca54_M6CH3_M6CH3" + "f51cfe90-a02d-45e7-aee0-d22330283c79_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1186" ], "x-ms-correlation-request-id": [ - "8b602ed5-00b6-44fc-afce-e5f50c3b086d" + "f52837f2-433e-4802-9ccc-f23a335e9e43" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002408Z:8b602ed5-00b6-44fc-afce-e5f50c3b086d" + "WESTUS:20200511T071040Z:f52837f2-433e-4802-9ccc-f23a335e9e43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1465,7 +1534,7 @@ "nosniff" ], "Content-Length": [ - "464" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1474,17 +1543,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_3\",\r\n \"name\": \"sdk-ConsumerGroup-9047_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:08.6962756Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:08.6962756Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_3\",\r\n \"name\": \"sdk-ConsumerGroup-4031_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:39.8668986Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:39.8668986Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_4?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N180P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_4?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV80P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "e38c9def-8204-44f1-9e18-ec0e67e8267b" + "2c156885-d854-4987-8568-f4022d844dc2" ], "accept-language": [ "en-US" @@ -1492,8 +1561,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1507,29 +1576,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:10 GMT" + "Mon, 11 May 2020 07:10:41 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c96b1d97-11cb-47b8-ac2b-9cc4b1804b5c_M8CH3_M8CH3" + "1a5422b4-7435-4c05-a808-0e1bf39eb98f_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1185" ], "x-ms-correlation-request-id": [ - "b2182afb-5c82-40ca-8e23-0057d9cc8766" + "d5eddbb8-8783-4ddf-ac89-063e55b0f534" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002411Z:b2182afb-5c82-40ca-8e23-0057d9cc8766" + "WESTUS:20200511T071042Z:d5eddbb8-8783-4ddf-ac89-063e55b0f534" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1538,7 +1607,7 @@ "nosniff" ], "Content-Length": [ - "464" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1547,17 +1616,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_4\",\r\n \"name\": \"sdk-ConsumerGroup-9047_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:10.9270934Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:10.9270934Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_4\",\r\n \"name\": \"sdk-ConsumerGroup-4031_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:41.7735127Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:41.7735127Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_5?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N181P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_5?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV81P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "21212c1a-4dac-4b3a-a1ec-604491a1118c" + "dff587f7-07bd-4069-a5e8-3ee8a667cad8" ], "accept-language": [ "en-US" @@ -1565,8 +1634,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1580,29 +1649,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:12 GMT" + "Mon, 11 May 2020 07:10:43 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "3afe5d68-74d2-4723-a7b7-db61a30607b1_M6CH3_M6CH3" + "83e36288-c7f3-4bb2-aac3-f0af8043c2d5_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1184" ], "x-ms-correlation-request-id": [ - "9c0e9969-35cf-4744-8c98-6efede2b42db" + "ac7dab14-dfe4-4a35-9c30-a8d5252c339a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002413Z:9c0e9969-35cf-4744-8c98-6efede2b42db" + "WESTUS:20200511T071044Z:ac7dab14-dfe4-4a35-9c30-a8d5252c339a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,7 +1680,7 @@ "nosniff" ], "Content-Length": [ - "464" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1620,17 +1689,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_5\",\r\n \"name\": \"sdk-ConsumerGroup-9047_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:12.9469498Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:12.9469498Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_5\",\r\n \"name\": \"sdk-ConsumerGroup-4031_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:43.7907201Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:43.7907201Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_6?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N182P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_6?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV82P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "76450f87-2ba8-447c-ba73-e6993970ff5e" + "0a49829f-b8ac-4f6d-9d62-85cc421c616b" ], "accept-language": [ "en-US" @@ -1638,8 +1707,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1653,29 +1722,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:14 GMT" + "Mon, 11 May 2020 07:10:44 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "06705f27-01a7-4b61-a65f-e6aacaa664f6_M8CH3_M8CH3" + "6f86f52e-e27a-41f7-bb2e-108b962c29ee_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1183" ], "x-ms-correlation-request-id": [ - "8c679435-7282-4f4b-9774-a86ce23098cc" + "cd6113ba-85dd-4ab7-9121-57bd568f5e48" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002415Z:8c679435-7282-4f4b-9774-a86ce23098cc" + "WESTUS:20200511T071045Z:cd6113ba-85dd-4ab7-9121-57bd568f5e48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1684,7 +1753,7 @@ "nosniff" ], "Content-Length": [ - "464" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1693,17 +1762,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_6\",\r\n \"name\": \"sdk-ConsumerGroup-9047_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:14.9282494Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:14.9282494Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_6\",\r\n \"name\": \"sdk-ConsumerGroup-4031_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:45.6046589Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:45.6046589Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_7?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N183P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_7?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV83P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "ff9c61ba-9389-4b39-948f-7140c3a988ec" + "b9d18746-8729-4153-954c-56d6fbc9ca7a" ], "accept-language": [ "en-US" @@ -1711,8 +1780,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1726,29 +1795,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:16 GMT" + "Mon, 11 May 2020 07:10:46 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c4e3e7f4-f86a-470e-98a1-bb00dad7024d_M8CH3_M8CH3" + "047fa4b9-6eef-4cf1-82a1-04a33cab9be1_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1182" ], "x-ms-correlation-request-id": [ - "67085115-21bf-4760-a6fd-4528763296f6" + "8e39552a-75cc-48bf-9b08-e9381dcddad9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002417Z:67085115-21bf-4760-a6fd-4528763296f6" + "WESTUS:20200511T071047Z:8e39552a-75cc-48bf-9b08-e9381dcddad9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1757,7 +1826,7 @@ "nosniff" ], "Content-Length": [ - "464" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1766,17 +1835,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_7\",\r\n \"name\": \"sdk-ConsumerGroup-9047_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:16.8995297Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:16.8995297Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_7\",\r\n \"name\": \"sdk-ConsumerGroup-4031_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:47.5116867Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:47.5116867Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_8?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N184P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_8?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV84P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "fc8c35b0-ea79-4bea-91ac-087000068d6f" + "d1492b71-1bb7-428e-a6be-5f67984eb611" ], "accept-language": [ "en-US" @@ -1784,8 +1853,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1799,29 +1868,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:18 GMT" + "Mon, 11 May 2020 07:10:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b5b3a949-ac76-422f-9aa4-540c30157520_M8CH3_M8CH3" + "cd4d1c7b-8cfb-47aa-93ff-2e05f1aaa087_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1181" ], "x-ms-correlation-request-id": [ - "c8faec05-5c34-4ef9-9175-8e479d8f4bf9" + "6df68585-f440-4226-97dc-2e2b963ad91b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002419Z:c8faec05-5c34-4ef9-9175-8e479d8f4bf9" + "WESTUS:20200511T071049Z:6df68585-f440-4226-97dc-2e2b963ad91b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1830,7 +1899,7 @@ "nosniff" ], "Content-Length": [ - "462" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1839,17 +1908,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_8\",\r\n \"name\": \"sdk-ConsumerGroup-9047_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:18.930877Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:18.930877Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_8\",\r\n \"name\": \"sdk-ConsumerGroup-4031_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:49.2470127Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:49.2470127Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_9?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtOTA0N185P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_9?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHMvc2RrLUNvbnN1bWVyR3JvdXAtNDAzMV85P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "bb37c189-b88d-491b-b934-22d7aabfda84" + "b3877bd1-2105-4fcf-9be0-dc0d135e6c24" ], "accept-language": [ "en-US" @@ -1857,8 +1926,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1872,29 +1941,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:22 GMT" + "Mon, 11 May 2020 07:10:51 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "766f3793-6978-45df-9382-32ce8375ed51_M8CH3_M8CH3" + "7be122fc-a7e5-4d08-b629-2930ef28be25_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1180" ], "x-ms-correlation-request-id": [ - "5bfe3649-45a4-419a-a8c1-6129c1430191" + "0235be3a-fda7-4fb9-8d21-8bdbc9ec8910" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002422Z:5bfe3649-45a4-419a-a8c1-6129c1430191" + "WESTUS:20200511T071051Z:0235be3a-fda7-4fb9-8d21-8bdbc9ec8910" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1903,7 +1972,7 @@ "nosniff" ], "Content-Length": [ - "464" + "446" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1912,17 +1981,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-ConsumerGroup-9047_9\",\r\n \"name\": \"sdk-ConsumerGroup-9047_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:21.9147473Z\",\r\n \"updatedAt\": \"2019-02-01T00:24:21.9147473Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-ConsumerGroup-4031_9\",\r\n \"name\": \"sdk-ConsumerGroup-4031_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:51.0595334Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:51.0595334Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63ece6de-0b58-4e35-a291-4098046aa5c6" + "436147bf-391f-44c4-8e30-971b132c2e03" ], "accept-language": [ "en-US" @@ -1930,8 +1999,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1939,32 +2008,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:24 GMT" + "Mon, 11 May 2020 07:10:51 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "0feb3501-e8a3-4a10-806a-eadd22764d07_M11CH3_M11CH3" + "73835040-2a53-4b67-8d11-2fa6cdf42105_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "ee8620ae-5cd4-4ddc-a21a-957ef59b3027" + "7aa25304-c0d5-412e-9c6c-4ab10d6a12ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002424Z:ee8620ae-5cd4-4ddc-a21a-957ef59b3027" + "WESTUS:20200511T071051Z:7aa25304-c0d5-412e-9c6c-4ab10d6a12ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1973,7 +2042,7 @@ "nosniff" ], "Content-Length": [ - "5070" + "4806" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1982,17 +2051,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/$Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:23:30.0937896\",\r\n \"updatedAt\": \"2019-02-01T00:23:30.0937896\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_0\",\r\n \"name\": \"sdk-consumergroup-9047_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:02.2095459\",\r\n \"updatedAt\": \"2019-02-01T00:24:02.2095459\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_1\",\r\n \"name\": \"sdk-consumergroup-9047_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:04.5751852\",\r\n \"updatedAt\": \"2019-02-01T00:24:04.5751852\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_2\",\r\n \"name\": \"sdk-consumergroup-9047_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:06.6689378\",\r\n \"updatedAt\": \"2019-02-01T00:24:06.6689378\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_3\",\r\n \"name\": \"sdk-consumergroup-9047_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:08.7001823\",\r\n \"updatedAt\": \"2019-02-01T00:24:08.7001823\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_4\",\r\n \"name\": \"sdk-consumergroup-9047_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:10.9355725\",\r\n \"updatedAt\": \"2019-02-01T00:24:10.9355725\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_5\",\r\n \"name\": \"sdk-consumergroup-9047_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:12.9511676\",\r\n \"updatedAt\": \"2019-02-01T00:24:12.9511676\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_6\",\r\n \"name\": \"sdk-consumergroup-9047_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:14.9393488\",\r\n \"updatedAt\": \"2019-02-01T00:24:14.9393488\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_7\",\r\n \"name\": \"sdk-consumergroup-9047_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:16.9092863\",\r\n \"updatedAt\": \"2019-02-01T00:24:16.9092863\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_8\",\r\n \"name\": \"sdk-consumergroup-9047_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:18.940529\",\r\n \"updatedAt\": \"2019-02-01T00:24:18.940529\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_9\",\r\n \"name\": \"sdk-consumergroup-9047_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:21.9408436\",\r\n \"updatedAt\": \"2019-02-01T00:24:21.9408436\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/$Default\",\r\n \"name\": \"$Default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:04.937Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:04.937Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_0\",\r\n \"name\": \"sdk-consumergroup-4031_0\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:33.979Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:33.979Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_1\",\r\n \"name\": \"sdk-consumergroup-4031_1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:36.464Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:36.464Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_2\",\r\n \"name\": \"sdk-consumergroup-4031_2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:38.174Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:38.174Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_3\",\r\n \"name\": \"sdk-consumergroup-4031_3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:39.861Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:39.861Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_4\",\r\n \"name\": \"sdk-consumergroup-4031_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:41.769Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:41.769Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_5\",\r\n \"name\": \"sdk-consumergroup-4031_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:43.786Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:43.786Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_6\",\r\n \"name\": \"sdk-consumergroup-4031_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:45.598Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:45.598Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_7\",\r\n \"name\": \"sdk-consumergroup-4031_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:47.52Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:47.52Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_8\",\r\n \"name\": \"sdk-consumergroup-4031_8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:49.239Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:49.239Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_9\",\r\n \"name\": \"sdk-consumergroup-4031_9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:51.067Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:51.067Z\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups?api-version=2017-04-01&$skip=5&$top=4", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi0xNDQ4XzAvY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAxNy0wNC0wMSYkc2tpcD01JiR0b3A9NA==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups?api-version=2017-04-01&$skip=5&$top=4", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvZXZlbnRodWJzL3Nkay1ldmVudGh1Yi04NTI1XzAvY29uc3VtZXJncm91cHM/YXBpLXZlcnNpb249MjAxNy0wNC0wMSYkc2tpcD01JiR0b3A9NA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9382b74f-728e-4f2e-89d0-598db5ec36a9" + "111c18e3-147b-415e-969a-55c6844a1b19" ], "accept-language": [ "en-US" @@ -2000,8 +2069,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2009,32 +2078,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:25 GMT" + "Mon, 11 May 2020 07:10:52 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-inline-count": [ "" ], "x-ms-request-id": [ - "893e9082-8526-4c72-aa12-b017162d31c5_M9CH3_M9CH3" + "9777186a-1c18-4f83-a159-cfded51cbc2e_M3SN1_M3SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "7b538b93-0e97-4350-bebc-6befa3e74140" + "8b23daff-57a5-4d41-892a-37f668d75d70" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002425Z:7b538b93-0e97-4350-bebc-6befa3e74140" + "WESTUS:20200511T071052Z:8b23daff-57a5-4d41-892a-37f668d75d70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2043,7 +2112,7 @@ "nosniff" ], "Content-Length": [ - "2144" + "2028" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2052,17 +2121,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_4\",\r\n \"name\": \"sdk-consumergroup-9047_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:10.9181292\",\r\n \"updatedAt\": \"2019-02-01T00:24:10.9181292\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_5\",\r\n \"name\": \"sdk-consumergroup-9047_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:12.9493942\",\r\n \"updatedAt\": \"2019-02-01T00:24:12.9493942\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_6\",\r\n \"name\": \"sdk-consumergroup-9047_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:14.9342174\",\r\n \"updatedAt\": \"2019-02-01T00:24:14.9342174\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups/sdk-consumergroup-9047_7\",\r\n \"name\": \"sdk-consumergroup-9047_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-02-01T00:24:16.902813\",\r\n \"updatedAt\": \"2019-02-01T00:24:16.902813\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/eventhubs/sdk-eventhub-1448_0/consumergroups?api-version=2017-04-01&$skip=9&$top=4\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_4\",\r\n \"name\": \"sdk-consumergroup-4031_4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:41.775Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:41.775Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_5\",\r\n \"name\": \"sdk-consumergroup-4031_5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:43.79Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:43.79Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_6\",\r\n \"name\": \"sdk-consumergroup-4031_6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:45.603Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:45.603Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups/sdk-consumergroup-4031_7\",\r\n \"name\": \"sdk-consumergroup-4031_7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/ConsumerGroups\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"createdAt\": \"2020-05-11T07:10:47.51Z\",\r\n \"updatedAt\": \"2020-05-11T07:10:47.51Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/eventhubs/sdk-eventhub-8525_0/consumergroups?api-version=2017-04-01&$skip=9&$top=4\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "097b759b-bdea-47c2-b52b-3c3cdb5c652a" + "9f3a44bd-f1d1-461d-be32-ad94bb7b6b8d" ], "accept-language": [ "en-US" @@ -2070,8 +2139,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2079,32 +2148,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:24:31 GMT" + "Mon, 11 May 2020 07:10:58 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/operationresults/sdk-Namespace-3684?api-version=2017-04-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/operationresults/sdk-NS-4925?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ba2b36ad-9384-4528-ab72-9c602d39f714_M9CH3_M9CH3" + "2c352375-b474-4318-97ad-dddeeb3538b5_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "f80427e8-3ea8-4710-aff7-f7acba2e3c2c" + "68bfaab9-817e-4b15-977a-34d58b7ecc9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002432Z:f80427e8-3ea8-4710-aff7-f7acba2e3c2c" + "WESTUS:20200511T071058Z:68bfaab9-817e-4b15-977a-34d58b7ecc9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2123,16 +2192,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/operationresults/sdk-Namespace-3684?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTM2ODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/operationresults/sdk-NS-4925?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNDkyNT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2140,29 +2209,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:01 GMT" + "Mon, 11 May 2020 07:11:28 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7afe0332-b108-45da-b424-99269dfe12a3_M2CH3_M2CH3" + "f9a87a1f-ad00-4511-8408-b7c193398da9_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "7e244554-8fdb-4fd3-8f2d-569c923a0bf0" + "25b7b3f7-af9a-465a-b7bd-d9307de7b8b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002502Z:7e244554-8fdb-4fd3-8f2d-569c923a0bf0" + "WESTUS:20200511T071128Z:25b7b3f7-af9a-465a-b7bd-d9307de7b8b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2181,16 +2250,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3684/operationresults/sdk-Namespace-3684?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTM2ODQvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTM2ODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-2187/providers/Microsoft.EventHub/namespaces/sdk-NS-4925/operationresults/sdk-NS-4925?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ5MjUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNDkyNT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -2198,29 +2267,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:25:01 GMT" + "Mon, 11 May 2020 07:11:28 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "31b399c4-b814-4898-89cf-aec17063adbe_M2CH3_M2CH3" + "4ddb3f7c-ae22-4d4c-98aa-ff0b5862ca9f_M2SN1_M2SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "b50de77e-56fb-44bf-9cc8-08fa1c3d0448" + "8551f1b8-2f67-4db9-b72a-a99c3a8e93b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002502Z:b50de77e-56fb-44bf-9cc8-08fa1c3d0448" + "WESTUS:20200511T071128Z:8551f1b8-2f67-4db9-b72a-a99c3a8e93b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2237,16 +2306,80 @@ }, "ResponseBody": "", "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-2187?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMjE4Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7125ec79-d014-4eea-a965-da1a64ab1c4a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 07:11:32 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQyMTg3LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "c99008d1-6879-4981-9fba-3304d53e6b49" + ], + "x-ms-correlation-request-id": [ + "c99008d1-6879-4981-9fba-3304d53e6b49" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T071132Z:c99008d1-6879-4981-9fba-3304d53e6b49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 } ], "Names": { "EventHubskiptop": [ - "sdk-Namespace-3684", - "sdk-EventHub-1448", - "sdk-ConsumerGroup-9047" + "Default-EventHub-2187", + "sdk-NS-4925", + "sdk-EventHub-8525", + "sdk-ConsumerGroup-4031" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules.json index f529f58fc2a7..34eddc8bd706 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68010a09-4016-4ea3-a353-90f290ee243e" + "74e8c418-3c8e-4322-9a91-10bef9899eca" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,7 +24,7 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:48 GMT" + "Mon, 11 May 2020 07:01:56 GMT" ], "Pragma": [ "no-cache" @@ -33,13 +33,13 @@ "11998" ], "x-ms-request-id": [ - "4b44fa82-1d85-4283-91ed-044b9899fce9" + "66bd22f4-f9b0-453c-bc96-546a3fa86847" ], "x-ms-correlation-request-id": [ - "4b44fa82-1d85-4283-91ed-044b9899fce9" + "66bd22f4-f9b0-453c-bc96-546a3fa86847" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001349Z:4b44fa82-1d85-4283-91ed-044b9899fce9" + "WESTUS:20200511T070157Z:66bd22f4-f9b0-453c-bc96-546a3fa86847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "2435" + "3375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-363?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bc51447a-2a93-4416-abd1-8d9f3cb9bbe5" + "cf02bc38-d0c9-4d07-a05f-a7281051c68c" ], "accept-language": [ "en-US" @@ -75,8 +75,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" ] }, "ResponseHeaders": { @@ -84,22 +90,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:48 GMT" + "Mon, 11 May 2020 07:01:59 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "9b2dd8ba-ab25-46c2-9598-fd18ffd6fdaa" + "8a4016f4-ed26-4652-8919-4e1a27b4c2b7" ], "x-ms-correlation-request-id": [ - "9b2dd8ba-ab25-46c2-9598-fd18ffd6fdaa" + "8a4016f4-ed26-4652-8919-4e1a27b4c2b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001349Z:9b2dd8ba-ab25-46c2-9598-fd18ffd6fdaa" + "WESTUS:20200511T070200Z:8a4016f4-ed26-4652-8919-4e1a27b4c2b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +114,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "200" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363\",\r\n \"name\": \"Default-EventHub-363\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5817b51f-92e8-4b54-a27b-7b1e9d628937" + "3c681d66-7ba9-4fcf-898c-0fc3475e97f8" ], "accept-language": [ "en-US" @@ -135,8 +141,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,29 +156,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:52 GMT" + "Mon, 11 May 2020 07:02:06 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "68e55935-004b-4e54-916e-4968e65a8868_M6CH3_M6CH3" + "bdc323c6-ec9e-4e5c-98f4-6442f29a4f2d_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "57ee752f-8b1c-4383-9846-f0d7aa0986ca" + "f3d4f8e9-bdaf-4eb2-9fc6-752fbc395f91" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001353Z:57ee752f-8b1c-4383-9846-f0d7aa0986ca" + "WESTUS:20200511T070207Z:f3d4f8e9-bdaf-4eb2-9fc6-752fbc395f91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,7 +187,7 @@ "nosniff" ], "Content-Length": [ - "725" + "706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,20 +196,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585\",\r\n \"name\": \"sdk-Namespace-1585\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1585\",\r\n \"createdAt\": \"2019-02-01T00:13:51.9Z\",\r\n \"updatedAt\": \"2019-02-01T00:13:51.9Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1585.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018\",\r\n \"name\": \"sdk-NS-5018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-5018\",\r\n \"createdAt\": \"2020-05-11T07:02:05.5Z\",\r\n \"updatedAt\": \"2020-05-11T07:02:05.5Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5018.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -211,29 +217,90 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:22 GMT" + "Mon, 11 May 2020 07:02:37 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "65f244aa-982c-43c6-9721-9d7dd8a5836b_M6CH3_M6CH3" + "47a0ede7-3a2d-40aa-a4cd-00672486a306_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "26fe6300-5181-458f-8978-299bf27177a0" + "df8428fd-9edc-4149-8c57-c972ec0902b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T070237Z:df8428fd-9edc-4149-8c57-c972ec0902b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "706" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018\",\r\n \"name\": \"sdk-NS-5018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-5018\",\r\n \"createdAt\": \"2020-05-11T07:02:05.5Z\",\r\n \"updatedAt\": \"2020-05-11T07:02:05.5Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5018.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 07:03:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "45461c24-3637-4d2a-9f91-4ecf778ed0e3_M0SN1_M0SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "f16140f1-8f6d-4a23-9538-c51f72bc05d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001423Z:26fe6300-5181-458f-8978-299bf27177a0" + "WESTUS:20200511T070307Z:f16140f1-8f6d-4a23-9538-c51f72bc05d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,7 +309,7 @@ "nosniff" ], "Content-Length": [ - "725" + "706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,17 +318,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585\",\r\n \"name\": \"sdk-Namespace-1585\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1585\",\r\n \"createdAt\": \"2019-02-01T00:13:51.9Z\",\r\n \"updatedAt\": \"2019-02-01T00:14:21.847Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1585.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018\",\r\n \"name\": \"sdk-NS-5018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-5018\",\r\n \"createdAt\": \"2020-05-11T07:02:05.5Z\",\r\n \"updatedAt\": \"2020-05-11T07:02:53.603Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5018.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24195262-9c26-46e1-b194-578022e59183" + "21016806-9ce7-4fde-b1eb-7e80f6e0e334" ], "accept-language": [ "en-US" @@ -269,8 +336,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -278,29 +345,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:28 GMT" + "Mon, 11 May 2020 07:03:12 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "0491712b-077d-4c52-a551-29123104d19d_M6CH3_M6CH3" + "07aa2263-05ab-4136-b110-6aec67a21680_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "061f4b4d-00c6-4d07-8969-3d28c2125eab" + "403de0e0-c42e-4163-bbc4-c916120ed272" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001428Z:061f4b4d-00c6-4d07-8969-3d28c2125eab" + "WESTUS:20200511T070312Z:403de0e0-c42e-4163-bbc4-c916120ed272" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,7 +376,7 @@ "nosniff" ], "Content-Length": [ - "725" + "706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,17 +385,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585\",\r\n \"name\": \"sdk-Namespace-1585\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1585\",\r\n \"createdAt\": \"2019-02-01T00:13:51.9Z\",\r\n \"updatedAt\": \"2019-02-01T00:14:21.847Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1585.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018\",\r\n \"name\": \"sdk-NS-5018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-5018\",\r\n \"createdAt\": \"2020-05-11T07:02:05.5Z\",\r\n \"updatedAt\": \"2020-05-11T07:02:53.603Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5018.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d05b38ca-d567-41a7-a1cc-60a497740ebb" + "3e21c51e-faac-4e80-89bb-15dff6864e4d" ], "accept-language": [ "en-US" @@ -336,8 +403,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -345,29 +412,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:28 GMT" + "Mon, 11 May 2020 07:03:12 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f039502d-bc1f-4458-bf71-afad68106fa6_M6CH3_M6CH3" + "6bf33e79-d36a-47ae-8f89-16fe3d3fb98a_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "ea7c0b02-4c34-412b-a0d4-3d6e5971e1ca" + "62ab94ee-1fb9-4378-8cb3-aaf53aad2b98" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001428Z:ea7c0b02-4c34-412b-a0d4-3d6e5971e1ca" + "WESTUS:20200511T070312Z:62ab94ee-1fb9-4378-8cb3-aaf53aad2b98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,7 +443,7 @@ "nosniff" ], "Content-Length": [ - "725" + "706" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,17 +452,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585\",\r\n \"name\": \"sdk-Namespace-1585\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1585\",\r\n \"createdAt\": \"2019-02-01T00:13:51.9Z\",\r\n \"updatedAt\": \"2019-02-01T00:14:21.847Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1585.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018\",\r\n \"name\": \"sdk-NS-5018\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-5018\",\r\n \"createdAt\": \"2020-05-11T07:02:05.5Z\",\r\n \"updatedAt\": \"2020-05-11T07:02:53.603Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-5018.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTI/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e19a33ef-ad6e-4f65-ac74-6822aa84fa5c" + "b0baaad4-c62e-4313-b7e1-dfaaf362f3b1" ], "accept-language": [ "en-US" @@ -403,8 +470,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -418,29 +485,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:32 GMT" + "Mon, 11 May 2020 07:03:16 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "4d5f350a-c8a3-425b-bed5-ee4b8d6b9657_M6CH3_M6CH3" + "f4564a50-8941-4f08-8493-b4eb6def63de_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "d18c92b9-673a-438e-bd90-1237ea124850" + "334a803d-b15a-4ae2-ba0e-62df40b49c35" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001433Z:d18c92b9-673a-438e-bd90-1237ea124850" + "WESTUS:20200511T070316Z:334a803d-b15a-4ae2-ba0e-62df40b49c35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,7 +516,7 @@ "nosniff" ], "Content-Length": [ - "487" + "469" ], "Content-Type": [ "application/json; charset=utf-8" @@ -458,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792\",\r\n \"name\": \"sdk-EventHub-9792\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:14:31.9Z\",\r\n \"updatedAt\": \"2019-02-01T00:14:32.417Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192\",\r\n \"name\": \"sdk-EventHub-9192\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:03:15.47Z\",\r\n \"updatedAt\": \"2020-05-11T07:03:16.057Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTI/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2ac72fd-249c-4b38-936c-046b1c79f140" + "a7a6f7b4-e05b-4060-b3d1-8786fcf542f4" ], "accept-language": [ "en-US" @@ -476,8 +543,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -485,29 +552,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:33 GMT" + "Mon, 11 May 2020 07:03:16 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "361bd1f4-d824-447e-8e4c-1c28070b27b6_M6CH3_M6CH3" + "4b4f1078-c9d2-4757-89fb-bd116e579fdb_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "a163df47-2a66-4cf7-ab9b-c8b5cfabf563" + "ec95b8d7-5778-4a20-893f-b29b3d73b768" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001433Z:a163df47-2a66-4cf7-ab9b-c8b5cfabf563" + "WESTUS:20200511T070317Z:ec95b8d7-5778-4a20-893f-b29b3d73b768" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -516,7 +583,7 @@ "nosniff" ], "Content-Length": [ - "485" + "467" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,17 +592,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792\",\r\n \"name\": \"sdk-EventHub-9792\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:14:31.9\",\r\n \"updatedAt\": \"2019-02-01T00:14:32.417\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192\",\r\n \"name\": \"sdk-EventHub-9192\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T07:03:15.47\",\r\n \"updatedAt\": \"2020-05-11T07:03:16.057\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTkwMzQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTIvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtODA0OD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f3631fd2-7f80-4300-9004-c5bcd3c974ed" + "691e0e4d-4ae4-4ec3-8352-072e1392a37a" ], "accept-language": [ "en-US" @@ -543,8 +610,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,29 +625,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:34 GMT" + "Mon, 11 May 2020 07:03:17 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a909c01f-2bb1-4b1f-827d-097399b56560_M6CH3_M6CH3" + "66e109b8-ca50-40f9-9310-6097941c0a00_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "995d49ce-2f54-4944-bb18-4b1ef24d2c4c" + "7901d02f-a1ba-4e14-927d-0442495fd2f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001434Z:995d49ce-2f54-4944-bb18-4b1ef24d2c4c" + "WESTUS:20200511T070317Z:7901d02f-a1ba-4e14-927d-0442495fd2f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +656,7 @@ "nosniff" ], "Content-Length": [ - "399" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,17 +665,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034\",\r\n \"name\": \"sdk-Authrules-9034\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048\",\r\n \"name\": \"sdk-Authrules-8048\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTkwMzQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTIvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtODA0OD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f79b519c-d63d-426e-90c1-01484bb5c299" + "dc295372-82c0-4bf2-98ce-04663fd5e013" ], "accept-language": [ "en-US" @@ -616,8 +683,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -631,29 +698,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:36 GMT" + "Mon, 11 May 2020 07:03:18 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fdcc9655-487c-4502-b1eb-7678637130a9_M6CH3_M6CH3" + "d9665017-498e-4d7e-87af-9a3aa574902b_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "71116138-5ce5-44ad-93d9-2c319d064344" + "4177975a-0f4f-461e-9d5e-639c3cf13e7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001436Z:71116138-5ce5-44ad-93d9-2c319d064344" + "WESTUS:20200511T070319Z:4177975a-0f4f-461e-9d5e-639c3cf13e7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,7 +729,7 @@ "nosniff" ], "Content-Length": [ - "392" + "373" ], "Content-Type": [ "application/json; charset=utf-8" @@ -671,17 +738,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034\",\r\n \"name\": \"sdk-Authrules-9034\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048\",\r\n \"name\": \"sdk-Authrules-8048\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTkwMzQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTIvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtODA0OD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a381f058-9682-4b9e-9e11-da63c0242414" + "bf9e11f2-fbcb-4c89-ae33-a812426e7b48" ], "accept-language": [ "en-US" @@ -689,8 +756,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -698,29 +765,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:35 GMT" + "Mon, 11 May 2020 07:03:17 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "47696286-ba5d-4ad4-947e-81f672f8efb7_M6CH3_M6CH3" + "a19caa60-c2fc-442d-b413-a9c54895e261_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "59be2db1-56f2-49a3-bfa9-95eb94e32108" + "a4a76f99-9452-4bc3-9465-698eae51e081" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001435Z:59be2db1-56f2-49a3-bfa9-95eb94e32108" + "WESTUS:20200511T070318Z:a4a76f99-9452-4bc3-9465-698eae51e081" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,7 +796,7 @@ "nosniff" ], "Content-Length": [ - "399" + "380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -738,17 +805,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034\",\r\n \"name\": \"sdk-Authrules-9034\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048\",\r\n \"name\": \"sdk-Authrules-8048\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTkwMzQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTIvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtODA0OD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1545685-6436-4f24-94d7-a7b97a5f8dbe" + "34ca75b1-5a56-4f8e-ae1d-afe5b36fc1a6" ], "accept-language": [ "en-US" @@ -756,8 +823,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -765,29 +832,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:37 GMT" + "Mon, 11 May 2020 07:03:19 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2585bf83-2d33-4a64-a9a1-0c905bfe836b_M6CH3_M6CH3" + "a899cfe0-a782-4f85-99a8-1413bafb42d4_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "b8f2e4f2-ca9c-4cf9-acc9-8ce64b159c80" + "84d8a282-fb27-4f77-a8b4-6e7fb92259c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001437Z:b8f2e4f2-ca9c-4cf9-acc9-8ce64b159c80" + "WESTUS:20200511T070319Z:84d8a282-fb27-4f77-a8b4-6e7fb92259c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -796,7 +863,7 @@ "nosniff" ], "Content-Length": [ - "392" + "373" ], "Content-Type": [ "application/json; charset=utf-8" @@ -805,17 +872,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034\",\r\n \"name\": \"sdk-Authrules-9034\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048\",\r\n \"name\": \"sdk-Authrules-8048\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyL2F1dGhvcml6YXRpb25SdWxlcz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTIvYXV0aG9yaXphdGlvblJ1bGVzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a9e8f45-807f-4ad9-afc1-e086ce27f65e" + "8ff339fb-fdb8-4e76-bfd7-04507ccf26c2" ], "accept-language": [ "en-US" @@ -823,8 +890,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -832,29 +899,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:35 GMT" + "Mon, 11 May 2020 07:03:17 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5ecef0f0-abe8-459d-b057-b79fcfcea2bf_M6CH3_M6CH3" + "83fc52d0-44ce-4398-918f-d7ea359cc976_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "cf8d39af-d9c1-44cd-bfbc-afc1cb899dee" + "5c4f8447-cdf5-433d-b42a-e0150b34e40d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001435Z:cf8d39af-d9c1-44cd-bfbc-afc1cb899dee" + "WESTUS:20200511T070318Z:5c4f8447-cdf5-433d-b42a-e0150b34e40d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -863,7 +930,7 @@ "nosniff" ], "Content-Length": [ - "411" + "392" ], "Content-Type": [ "application/json; charset=utf-8" @@ -872,17 +939,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034\",\r\n \"name\": \"sdk-Authrules-9034\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048\",\r\n \"name\": \"sdk-Authrules-8048\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034/ListKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTkwMzQvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048/listKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTIvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtODA0OC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c847a5f5-d2be-4571-a195-731d51759d76" + "1c5fb6a9-621d-45cc-bfa2-e1d23139d687" ], "accept-language": [ "en-US" @@ -890,8 +957,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -899,29 +966,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:37 GMT" + "Mon, 11 May 2020 07:03:19 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "9304c74b-8e36-4cae-b498-802f853528ca_M6CH3_M6CH3" + "02afd9d6-9ee5-4657-9ee0-df0e5febbc18_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "a5603ff3-7308-4d2a-bb95-b7add996c720" + "9b9a5dbb-97b3-4f96-8e5f-5db209ad1bc6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001437Z:a5603ff3-7308-4d2a-bb95-b7add996c720" + "WESTUS:20200511T070320Z:9b9a5dbb-97b3-4f96-8e5f-5db209ad1bc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -930,7 +997,7 @@ "nosniff" ], "Content-Length": [ - "584" + "570" ], "Content-Type": [ "application/json; charset=utf-8" @@ -939,17 +1006,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-1585.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9034;SharedAccessKey=+ZPV7Zs/k86kIcNLE2cBKrgXorI+x/4650JurqWTjYc=;EntityPath=sdk-EventHub-9792\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-1585.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9034;SharedAccessKey=XJxbVILcH0u2Z3aM9cUOcD87SMwxr509ND4vbAcM+RY=;EntityPath=sdk-EventHub-9792\",\r\n \"primaryKey\": \"+ZPV7Zs/k86kIcNLE2cBKrgXorI+x/4650JurqWTjYc=\",\r\n \"secondaryKey\": \"XJxbVILcH0u2Z3aM9cUOcD87SMwxr509ND4vbAcM+RY=\",\r\n \"keyName\": \"sdk-Authrules-9034\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-5018.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-8048;SharedAccessKey=BQK/iEOookjLKehObU/gNoVMBKyeYH/QkB1U6nrlbO4=;EntityPath=sdk-EventHub-9192\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-5018.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-8048;SharedAccessKey=feLEMlZIVNrzFiKxix7x6pRPrkEupvkRIddz+yd6mSI=;EntityPath=sdk-EventHub-9192\",\r\n \"primaryKey\": \"BQK/iEOookjLKehObU/gNoVMBKyeYH/QkB1U6nrlbO4=\",\r\n \"secondaryKey\": \"feLEMlZIVNrzFiKxix7x6pRPrkEupvkRIddz+yd6mSI=\",\r\n \"keyName\": \"sdk-Authrules-8048\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034/regenerateKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTkwMzQvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048/regenerateKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTIvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtODA0OC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"PrimaryKey\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9e058c6c-0260-469f-a994-a6b0a5424d8d" + "85d55bb0-6abf-440e-842c-69e237dd6970" ], "accept-language": [ "en-US" @@ -957,8 +1024,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -972,29 +1039,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:38 GMT" + "Mon, 11 May 2020 07:03:20 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "abb3542e-6663-4452-814b-c2ac2c2b1492_M6CH3_M6CH3" + "c5bf66ac-1b50-4de2-b03d-b957b4b601a2_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "d19d3377-906c-4a7b-b9aa-a61c0bc59970" + "44d8c34b-5564-4a32-ad26-a9d27d9a7826" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001438Z:d19d3377-906c-4a7b-b9aa-a61c0bc59970" + "WESTUS:20200511T070320Z:44d8c34b-5564-4a32-ad26-a9d27d9a7826" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1003,7 +1070,7 @@ "nosniff" ], "Content-Length": [ - "584" + "570" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1012,17 +1079,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-1585.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9034;SharedAccessKey=w+l0NkP8nXfN4VFj3CgttdBefP0bDY9qch4eVL5sxsc=;EntityPath=sdk-EventHub-9792\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-1585.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9034;SharedAccessKey=XJxbVILcH0u2Z3aM9cUOcD87SMwxr509ND4vbAcM+RY=;EntityPath=sdk-EventHub-9792\",\r\n \"primaryKey\": \"w+l0NkP8nXfN4VFj3CgttdBefP0bDY9qch4eVL5sxsc=\",\r\n \"secondaryKey\": \"XJxbVILcH0u2Z3aM9cUOcD87SMwxr509ND4vbAcM+RY=\",\r\n \"keyName\": \"sdk-Authrules-9034\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-5018.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-8048;SharedAccessKey=IUNepm3Bb+eoinmXGm1lChgymIW+vSZzjTaLgdl92JA=;EntityPath=sdk-EventHub-9192\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-5018.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-8048;SharedAccessKey=feLEMlZIVNrzFiKxix7x6pRPrkEupvkRIddz+yd6mSI=;EntityPath=sdk-EventHub-9192\",\r\n \"primaryKey\": \"IUNepm3Bb+eoinmXGm1lChgymIW+vSZzjTaLgdl92JA=\",\r\n \"secondaryKey\": \"feLEMlZIVNrzFiKxix7x6pRPrkEupvkRIddz+yd6mSI=\",\r\n \"keyName\": \"sdk-Authrules-8048\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034/regenerateKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTkwMzQvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048/regenerateKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTIvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtODA0OC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"SecondaryKey\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f9dcb7f2-b201-4468-99e6-4299ae95dbba" + "1dfe1091-de13-4fe2-a6b0-e35997bab09e" ], "accept-language": [ "en-US" @@ -1030,8 +1097,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1045,29 +1112,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:39 GMT" + "Mon, 11 May 2020 07:03:21 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "105280ea-5229-4c31-98b5-bc9801e486a5_M6CH3_M6CH3" + "31ef739a-2406-4e9c-864b-7a62992fcd44_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "ebd0ea21-17ba-48f7-b906-e4c31e59c09e" + "c9390deb-b17e-4d81-a27a-89a8d5491b4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001439Z:ebd0ea21-17ba-48f7-b906-e4c31e59c09e" + "WESTUS:20200511T070321Z:c9390deb-b17e-4d81-a27a-89a8d5491b4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1076,7 +1143,7 @@ "nosniff" ], "Content-Length": [ - "584" + "570" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1085,17 +1152,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-1585.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9034;SharedAccessKey=w+l0NkP8nXfN4VFj3CgttdBefP0bDY9qch4eVL5sxsc=;EntityPath=sdk-EventHub-9792\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-1585.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9034;SharedAccessKey=Zc17byzQrxZa4wB4AUAeycQldMIbOcTcoJLn+iGExmI=;EntityPath=sdk-EventHub-9792\",\r\n \"primaryKey\": \"w+l0NkP8nXfN4VFj3CgttdBefP0bDY9qch4eVL5sxsc=\",\r\n \"secondaryKey\": \"Zc17byzQrxZa4wB4AUAeycQldMIbOcTcoJLn+iGExmI=\",\r\n \"keyName\": \"sdk-Authrules-9034\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-5018.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-8048;SharedAccessKey=IUNepm3Bb+eoinmXGm1lChgymIW+vSZzjTaLgdl92JA=;EntityPath=sdk-EventHub-9192\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-5018.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-8048;SharedAccessKey=pdcxlh0u8KhhdwaIRuarGNZVwNeIx3sQ8jBCHVP9WVs=;EntityPath=sdk-EventHub-9192\",\r\n \"primaryKey\": \"IUNepm3Bb+eoinmXGm1lChgymIW+vSZzjTaLgdl92JA=\",\r\n \"secondaryKey\": \"pdcxlh0u8KhhdwaIRuarGNZVwNeIx3sQ8jBCHVP9WVs=\",\r\n \"keyName\": \"sdk-Authrules-8048\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792/authorizationRules/sdk-Authrules-9034?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyL2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLTkwMzQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192/authorizationRules/sdk-Authrules-8048?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTIvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtODA0OD9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "734195c7-b1d7-4da6-8cb9-280c338e1341" + "e4614fb9-969b-4dac-b403-933f4cc3f45d" ], "accept-language": [ "en-US" @@ -1103,8 +1170,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1112,29 +1179,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:41 GMT" + "Mon, 11 May 2020 07:03:21 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ee6b9c48-a7cd-4fae-8d7e-1eeac71ee48e_M0CH3_M0CH3" + "bd981b6d-1bba-4de3-9321-6018ac92a3d8_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "aeec7528-8ee5-419c-a437-fee3836948b2" + "f460f856-7cd2-4b2b-ba0f-61c3f77e1b92" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001441Z:aeec7528-8ee5-419c-a437-fee3836948b2" + "WESTUS:20200511T070322Z:f460f856-7cd2-4b2b-ba0f-61c3f77e1b92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1153,13 +1220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/eventhubs/sdk-EventHub-9792?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi05NzkyP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/eventhubs/sdk-EventHub-9192?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9ldmVudGh1YnMvc2RrLUV2ZW50SHViLTkxOTI/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3dda926-2895-4c5e-96cd-deed7bccc7b3" + "9489251b-d3de-47d5-aee7-8d287b424341" ], "accept-language": [ "en-US" @@ -1167,8 +1234,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1176,29 +1243,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:48 GMT" + "Mon, 11 May 2020 07:03:31 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b5818837-fa0c-4c59-9b6e-e5f334771121_M2CH3_M2CH3" + "49c87c89-e0ed-4228-8395-1f94dacf6d7c_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "ddbb5729-d95b-40b2-80ce-a77153e9bcda" + "b3050da6-5c44-4b37-b8fa-09f46d8e98bb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001448Z:ddbb5729-d95b-40b2-80ce-a77153e9bcda" + "WESTUS:20200511T070332Z:b3050da6-5c44-4b37-b8fa-09f46d8e98bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1217,13 +1284,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7b1792e-e27b-4f85-9ef8-0e14e907c023" + "6cfec556-5bd7-45ec-8b9a-55167c6d529e" ], "accept-language": [ "en-US" @@ -1231,8 +1298,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1240,32 +1307,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:14:51 GMT" + "Mon, 11 May 2020 07:03:33 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/operationresults/sdk-Namespace-1585?api-version=2017-04-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/operationresults/sdk-NS-5018?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d07bf669-db4f-43e5-968d-31f14ede4dad_M9CH3_M9CH3" + "76867d47-06ce-4085-976a-86308b21a43e_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "cb5efc6b-0198-470f-b7eb-1712f8695154" + "193c6fc1-917c-4210-b1f6-40f6a78470ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001452Z:cb5efc6b-0198-470f-b7eb-1712f8695154" + "WESTUS:20200511T070334Z:193c6fc1-917c-4210-b1f6-40f6a78470ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,16 +1351,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/operationresults/sdk-Namespace-1585?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTE1ODU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/operationresults/sdk-NS-5018?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy01MDE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1301,29 +1368,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:15:21 GMT" + "Mon, 11 May 2020 07:04:03 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "69df7831-2e00-4b10-b6c8-04130382f9c1_M2CH3_M2CH3" + "80316f91-0671-4567-b2a8-8498a10fd648_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "ad49a0dc-8349-4866-9199-98d4e4b3dfcd" + "99513db6-32aa-44ba-8fe6-1d00cec88713" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001522Z:ad49a0dc-8349-4866-9199-98d4e4b3dfcd" + "WESTUS:20200511T070404Z:99513db6-32aa-44ba-8fe6-1d00cec88713" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,16 +1409,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1585/operationresults/sdk-Namespace-1585?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTE1ODUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTE1ODU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-363/providers/Microsoft.EventHub/namespaces/sdk-NS-5018/operationresults/sdk-NS-5018?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtNTAxOC9vcGVyYXRpb25yZXN1bHRzL3Nkay1OUy01MDE4P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1359,29 +1426,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:15:21 GMT" + "Mon, 11 May 2020 07:04:03 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c3d68dfa-0f7f-4929-901e-971f191c9454_M2CH3_M2CH3" + "9399a606-c706-4b95-b0fc-8a27715cbcf5_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "18367e78-3379-4f39-af91-6e74451a083a" + "25546f2a-5f5b-4c52-be48-e53c954a1922" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001522Z:18367e78-3379-4f39-af91-6e74451a083a" + "WESTUS:20200511T070404Z:25546f2a-5f5b-4c52-be48-e53c954a1922" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1398,18 +1465,82 @@ }, "ResponseBody": "", "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-363?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzYzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6ca075e-10f9-410d-9412-fa2b12298321" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 07:04:07 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQzNjMtQVVTVFJBTElBRUFTVCIsImpvYkxvY2F0aW9uIjoiYXVzdHJhbGlhZWFzdCJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "b8154988-91a6-4392-87db-d5a2b1ce91fc" + ], + "x-ms-correlation-request-id": [ + "b8154988-91a6-4392-87db-d5a2b1ce91fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T070408Z:b8154988-91a6-4392-87db-d5a2b1ce91fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 } ], "Names": { "EventhubCreateGetUpdateDeleteAuthorizationRules": [ - "sdk-Namespace-1585", - "sdk-EventHub-9792", - "sdk-Authrules-9034" + "Default-EventHub-363", + "sdk-NS-5018", + "sdk-EventHub-9192", + "sdk-Authrules-8048" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d", - "CreatePrimaryKey": "QWwBKiURcv70VP8mvEoYVGv5LEsquatEOT03ZgQTaUE=", - "UpdatePrimaryKey": "GY6q8t3kUYrDDEi2w+yqCZfoZ0uaNLCxG1CO2dmCRbA=" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e", + "CreatePrimaryKey": "cN3b5SjTlJz56rc6R8QRM8TdBdisDn3NvyP5VbClcIE=", + "UpdatePrimaryKey": "cAeG2SoNAxfCoEJ8TznHll2d3l6rI/f0LNNXi5qWF8M=" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules_Length.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules_Length.json index 13686080e900..6632705d7651 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules_Length.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/EventhubCreateGetUpdateDeleteAuthorizationRules_Length.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4633c4dc-a213-4b6d-8e3b-b52fded4414d" + "bfe1983c-8a23-48e0-8dfe-59e4572feac7" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,22 +24,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:20:45 GMT" + "Mon, 11 May 2020 08:09:07 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-request-id": [ - "dc0dd50c-d4b8-499e-af85-ebbe89b65041" + "7b840a98-e42a-4a00-bb9b-4ef9102f8e85" ], "x-ms-correlation-request-id": [ - "dc0dd50c-d4b8-499e-af85-ebbe89b65041" + "7b840a98-e42a-4a00-bb9b-4ef9102f8e85" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002045Z:dc0dd50c-d4b8-499e-af85-ebbe89b65041" + "WESTUS:20200511T080908Z:7b840a98-e42a-4a00-bb9b-4ef9102f8e85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "2435" + "3375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8084?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4ND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9fc86723-23e6-40b1-90d1-1812f919ad01" + "0e14937d-501b-479a-bb1a-872cabe8920d" ], "accept-language": [ "en-US" @@ -75,8 +75,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" ] }, "ResponseHeaders": { @@ -84,22 +90,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:20:45 GMT" + "Mon, 11 May 2020 08:09:11 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "6093b8ed-2b89-412a-b92c-57a0077a95f7" + "3862b24a-e86a-4988-af4c-131da0876ed7" ], "x-ms-correlation-request-id": [ - "6093b8ed-2b89-412a-b92c-57a0077a95f7" + "3862b24a-e86a-4988-af4c-131da0876ed7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002045Z:6093b8ed-2b89-412a-b92c-57a0077a95f7" + "WESTUS:20200511T080911Z:3862b24a-e86a-4988-af4c-131da0876ed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +114,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084\",\r\n \"name\": \"Default-EventHub-8084\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2e12c741-3053-428a-8633-c46a5af66fc8" + "8f63022e-1537-4b57-a6db-74aea30bd7cc" ], "accept-language": [ "en-US" @@ -135,8 +141,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,29 +156,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:20:48 GMT" + "Mon, 11 May 2020 08:09:19 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5a1ede06-2ead-4f09-98e5-20013552bdef_M0CH3_M0CH3" + "5cd37006-e31f-4e92-838f-e8cb1431f038_M6SN1_M6SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "f9d1894b-2309-4408-8df6-dfc21243323a" + "ff707fa6-a8d7-4282-b129-213d40773b0f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002049Z:f9d1894b-2309-4408-8df6-dfc21243323a" + "WESTUS:20200511T080919Z:ff707fa6-a8d7-4282-b129-213d40773b0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,7 +187,7 @@ "nosniff" ], "Content-Length": [ - "727" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,20 +196,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315\",\r\n \"name\": \"sdk-Namespace-3315\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3315\",\r\n \"createdAt\": \"2019-02-01T00:20:47.91Z\",\r\n \"updatedAt\": \"2019-02-01T00:20:47.91Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3315.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691\",\r\n \"name\": \"sdk-NS-2691\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2691\",\r\n \"createdAt\": \"2020-05-11T08:09:18.17Z\",\r\n \"updatedAt\": \"2020-05-11T08:09:18.17Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2691.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -211,29 +217,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:18 GMT" + "Mon, 11 May 2020 08:09:48 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d013dc8d-9173-4131-a745-10624e030118_M9CH3_M9CH3" + "2f4ac592-61b5-46ed-b91d-c1d21971c086_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "8c60c44c-c116-44f2-8ccf-c9732dade322" + "b4ac7fb1-6dc9-4b25-af6a-16b30941f90f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002119Z:8c60c44c-c116-44f2-8ccf-c9732dade322" + "WESTUS:20200511T080949Z:b4ac7fb1-6dc9-4b25-af6a-16b30941f90f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,7 +248,7 @@ "nosniff" ], "Content-Length": [ - "726" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,17 +257,78 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315\",\r\n \"name\": \"sdk-Namespace-3315\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3315\",\r\n \"createdAt\": \"2019-02-01T00:20:47.91Z\",\r\n \"updatedAt\": \"2019-02-01T00:21:19.043Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3315.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691\",\r\n \"name\": \"sdk-NS-2691\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2691\",\r\n \"createdAt\": \"2020-05-11T08:09:18.17Z\",\r\n \"updatedAt\": \"2020-05-11T08:09:18.17Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2691.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 08:10:19 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "c45390f3-3ccf-444c-a5ea-25972b753ce6_M3SN1_M3SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e9bc15f6-ad3e-43e8-b071-3dd495f02525" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T081019Z:e9bc15f6-ad3e-43e8-b071-3dd495f02525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "708" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691\",\r\n \"name\": \"sdk-NS-2691\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2691\",\r\n \"createdAt\": \"2020-05-11T08:09:18.17Z\",\r\n \"updatedAt\": \"2020-05-11T08:10:07.633Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2691.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f000b1d6-19ce-4d28-9c5b-335551ef4fee" + "1bd99e75-a278-4738-bca0-7d40ce5173a4" ], "accept-language": [ "en-US" @@ -269,8 +336,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -278,29 +345,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:23 GMT" + "Mon, 11 May 2020 08:10:24 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5c42e644-214e-4aae-9924-7d83cd965d4c_M9CH3_M9CH3" + "4dc43c44-00d7-408a-991b-40f72479149f_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "732576c1-2c01-4f22-a436-8937762cceae" + "4d52c5b0-612d-474f-9629-f526dc445a7a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002124Z:732576c1-2c01-4f22-a436-8937762cceae" + "WESTUS:20200511T081025Z:4d52c5b0-612d-474f-9629-f526dc445a7a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,7 +376,7 @@ "nosniff" ], "Content-Length": [ - "726" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,17 +385,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315\",\r\n \"name\": \"sdk-Namespace-3315\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3315\",\r\n \"createdAt\": \"2019-02-01T00:20:47.91Z\",\r\n \"updatedAt\": \"2019-02-01T00:21:19.043Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3315.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691\",\r\n \"name\": \"sdk-NS-2691\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2691\",\r\n \"createdAt\": \"2020-05-11T08:09:18.17Z\",\r\n \"updatedAt\": \"2020-05-11T08:10:07.633Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2691.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5381e48e-565b-471e-8286-c342cabb28f9" + "3e613c00-3373-481f-889f-20c22ee14b46" ], "accept-language": [ "en-US" @@ -336,8 +403,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -345,29 +412,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:23 GMT" + "Mon, 11 May 2020 08:10:24 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "619f8d6f-6253-4552-bc5f-2a83606e7485_M9CH3_M9CH3" + "761e28df-5b53-4a9e-bbcc-3f4493aa95ed_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "821f46e1-7b38-4561-bf13-64c14723046a" + "6f8a09a5-96d7-4cf0-8434-6dcbb9d44855" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002124Z:821f46e1-7b38-4561-bf13-64c14723046a" + "WESTUS:20200511T081025Z:6f8a09a5-96d7-4cf0-8434-6dcbb9d44855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,7 +443,7 @@ "nosniff" ], "Content-Length": [ - "726" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,17 +452,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315\",\r\n \"name\": \"sdk-Namespace-3315\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3315\",\r\n \"createdAt\": \"2019-02-01T00:20:47.91Z\",\r\n \"updatedAt\": \"2019-02-01T00:21:19.043Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3315.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691\",\r\n \"name\": \"sdk-NS-2691\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-2691\",\r\n \"createdAt\": \"2020-05-11T08:09:18.17Z\",\r\n \"updatedAt\": \"2020-05-11T08:10:07.633Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-2691.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1cd5d29-2bea-4f6a-988a-12eef8971d73" + "8ef54586-e60e-4c7b-8bdf-7061e485a079" ], "accept-language": [ "en-US" @@ -403,8 +470,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -418,29 +485,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:28 GMT" + "Mon, 11 May 2020 08:10:26 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "80ab3e39-840f-4773-85c2-0c374067ee19_M9CH3_M9CH3" + "22f0d04d-fc41-4d0d-911e-a4d9d479ed0a_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "c59593fe-b3fe-4065-a738-4e063766984c" + "fc50d98f-0ae9-4108-bd1b-7b13eaa805fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002129Z:c59593fe-b3fe-4065-a738-4e063766984c" + "WESTUS:20200511T081027Z:fc50d98f-0ae9-4108-bd1b-7b13eaa805fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,7 +516,7 @@ "nosniff" ], "Content-Length": [ - "638" + "462" ], "Content-Type": [ "application/json; charset=utf-8" @@ -458,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"name\": \"sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:21:28.013Z\",\r\n \"updatedAt\": \"2019-02-01T00:21:28.59Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-\",\r\n \"name\": \"sdk-EventHub-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T08:10:26.76Z\",\r\n \"updatedAt\": \"2020-05-11T08:10:26.963Z\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bc3a9a5-74fd-4611-a687-3550d536cf23" + "59c10d5d-d96b-49a4-a97c-120c1f20d921" ], "accept-language": [ "en-US" @@ -476,8 +543,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -485,29 +552,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:29 GMT" + "Mon, 11 May 2020 08:10:26 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "10ae4537-dce1-434e-b428-6319836cf89f_M9CH3_M9CH3" + "501f39ff-59b1-4aeb-a259-9e2d6a68e304_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "ecd239b9-4e4f-4d53-a312-0f9ad5c06792" + "0e2ecd69-7fe8-4645-961d-9e131a1cb8c2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002129Z:ecd239b9-4e4f-4d53-a312-0f9ad5c06792" + "WESTUS:20200511T081027Z:0e2ecd69-7fe8-4645-961d-9e131a1cb8c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -516,7 +583,7 @@ "nosniff" ], "Content-Length": [ - "636" + "460" ], "Content-Type": [ "application/json; charset=utf-8" @@ -525,17 +592,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"name\": \"sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2019-02-01T00:21:28.013\",\r\n \"updatedAt\": \"2019-02-01T00:21:28.59\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-\",\r\n \"name\": \"sdk-EventHub-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"messageRetentionInDays\": 5,\r\n \"partitionCount\": 4,\r\n \"status\": \"Active\",\r\n \"createdAt\": \"2020-05-11T08:10:26.76\",\r\n \"updatedAt\": \"2020-05-11T08:10:26.963\",\r\n \"partitionIds\": [\r\n \"0\",\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLXRoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmeXRoZXJlbW92bGFvZjUwY2hhcnNuYW1lbGVuZ3RobGltaXQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d72cf48-1e1b-4b87-8783-f910c699d4c4" + "9067fd25-e642-4b0a-a05b-4060b35974cd" ], "accept-language": [ "en-US" @@ -543,8 +610,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -558,29 +625,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:30 GMT" + "Mon, 11 May 2020 08:10:27 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "547e15db-01e9-4c6d-bb17-842089f82f50_M9CH3_M9CH3" + "df559fae-ccdc-4325-8390-c278e1563d05_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "5548b721-41c7-4879-9f3d-199fbb1d9800" + "78f6bbb5-feca-47fd-b123-de8f4b1302f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002130Z:5548b721-41c7-4879-9f3d-199fbb1d9800" + "WESTUS:20200511T081028Z:78f6bbb5-feca-47fd-b123-de8f4b1302f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +656,7 @@ "nosniff" ], "Content-Length": [ - "624" + "369" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,17 +665,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"name\": \"sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-\",\r\n \"name\": \"sdk-Authrules-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLXRoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmeXRoZXJlbW92bGFvZjUwY2hhcnNuYW1lbGVuZ3RobGltaXQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dd654789-4d3a-4336-9f97-e4cc146aa88e" + "38b05f6a-48a4-4a6a-a6a3-e5303df73662" ], "accept-language": [ "en-US" @@ -616,8 +683,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -631,29 +698,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:32 GMT" + "Mon, 11 May 2020 08:10:29 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d58b643e-8f58-4b28-9fd1-b9d7af6c5a92_M9CH3_M9CH3" + "72bc5be8-2f43-4de5-a598-f06e29865641_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1197" ], "x-ms-correlation-request-id": [ - "8c44354e-3b9b-41f5-b3d8-a9884c1e9578" + "0548fa29-ac18-44ef-ab67-c7100e5e1563" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002132Z:8c44354e-3b9b-41f5-b3d8-a9884c1e9578" + "WESTUS:20200511T081030Z:0548fa29-ac18-44ef-ab67-c7100e5e1563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,7 +729,7 @@ "nosniff" ], "Content-Length": [ - "617" + "362" ], "Content-Type": [ "application/json; charset=utf-8" @@ -671,17 +738,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"name\": \"sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-\",\r\n \"name\": \"sdk-Authrules-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLXRoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmeXRoZXJlbW92bGFvZjUwY2hhcnNuYW1lbGVuZ3RobGltaXQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "518d0c59-ecb7-4ffa-b10a-dbf087a42b11" + "80b474f3-a721-4a4c-ad43-fbfd417781ee" ], "accept-language": [ "en-US" @@ -689,8 +756,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -698,29 +765,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:30 GMT" + "Mon, 11 May 2020 08:10:28 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "17a6e186-e75e-43e6-902c-0dec0b0f72ab_M9CH3_M9CH3" + "05d541a0-967c-405f-9ea2-5aa4d9c352a5_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "64d6a31a-7229-4c70-8fd0-005883f87c64" + "dcba24da-4244-4522-b253-7d278b89ddac" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002131Z:64d6a31a-7229-4c70-8fd0-005883f87c64" + "WESTUS:20200511T081029Z:dcba24da-4244-4522-b253-7d278b89ddac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,7 +796,7 @@ "nosniff" ], "Content-Length": [ - "624" + "369" ], "Content-Type": [ "application/json; charset=utf-8" @@ -738,17 +805,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"name\": \"sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-\",\r\n \"name\": \"sdk-Authrules-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLXRoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmeXRoZXJlbW92bGFvZjUwY2hhcnNuYW1lbGVuZ3RobGltaXQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89d48784-9bdd-4146-b41a-13dbe0e1de65" + "f3014cfc-f804-429c-b644-bb6b96e38db5" ], "accept-language": [ "en-US" @@ -756,8 +823,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -765,29 +832,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:32 GMT" + "Mon, 11 May 2020 08:10:29 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "8c20e140-6305-4b34-a001-d54a89d3bb8c_M9CH3_M9CH3" + "3ebbd5ac-e9b4-4520-ae97-d85e72705e71_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "57cf3800-109f-4db1-8bdd-9a00be105cf8" + "5ca5c2f2-36e1-43ed-869f-aa00ca1708d1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002133Z:57cf3800-109f-4db1-8bdd-9a00be105cf8" + "WESTUS:20200511T081030Z:5ca5c2f2-36e1-43ed-869f-aa00ca1708d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -796,7 +863,7 @@ "nosniff" ], "Content-Length": [ - "617" + "362" ], "Content-Type": [ "application/json; charset=utf-8" @@ -805,17 +872,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"name\": \"sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-\",\r\n \"name\": \"sdk-Authrules-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2F1dGhvcml6YXRpb25SdWxlcz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vYXV0aG9yaXphdGlvblJ1bGVzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88abe213-7220-4391-93ab-e2123be173bd" + "65845f60-484c-4509-a7fd-6446931962f4" ], "accept-language": [ "en-US" @@ -823,8 +890,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -832,29 +899,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:31 GMT" + "Mon, 11 May 2020 08:10:28 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b1da14a4-c170-441b-ab0b-0aa1240a8b4a_M9CH3_M9CH3" + "4a6a91f0-8b65-4ef6-b189-8bd8c9e32897_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "02287a0c-2b2b-4fb2-a747-0045d52c15ee" + "69390e42-3c84-43b8-9c0b-794d903388f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002131Z:02287a0c-2b2b-4fb2-a747-0045d52c15ee" + "WESTUS:20200511T081029Z:69390e42-3c84-43b8-9c0b-794d903388f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -863,7 +930,7 @@ "nosniff" ], "Content-Length": [ - "636" + "381" ], "Content-Type": [ "application/json; charset=utf-8" @@ -872,17 +939,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"name\": \"sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-\",\r\n \"name\": \"sdk-Authrules-\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/EventHubs/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/ListKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLXRoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmeXRoZXJlbW92bGFvZjUwY2hhcnNuYW1lbGVuZ3RobGltaXQvTGlzdEtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-/listKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe4cb057-2930-4c97-985b-d150870c7551" + "be9eb8ea-7d71-41bb-aacf-462a438793f3" ], "accept-language": [ "en-US" @@ -890,8 +957,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -899,29 +966,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:33 GMT" + "Mon, 11 May 2020 08:10:29 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5a00c3c5-ae03-4c93-8614-980083e9721d_M9CH3_M9CH3" + "85ec5543-fa44-44a4-b578-0d95afcb581d_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "2dc74f3f-90ca-4b29-9ac1-c185f3d35dcf" + "c92ec414-b047-405d-94ad-6362081deec3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002133Z:2dc74f3f-90ca-4b29-9ac1-c185f3d35dcf" + "WESTUS:20200511T081030Z:c92ec414-b047-405d-94ad-6362081deec3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -930,7 +997,7 @@ "nosniff" ], "Content-Length": [ - "959" + "550" ], "Content-Type": [ "application/json; charset=utf-8" @@ -939,17 +1006,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-3315.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit;SharedAccessKey=q3mNw6tYnUbwAPjvbIx4uzCFNFCvFW6PP5Nu73Blo2I=;EntityPath=sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-3315.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit;SharedAccessKey=2CrS4giFEmtr0qJeP/5UNBLz3GO3jxtTXeqDsMWMiwI=;EntityPath=sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"primaryKey\": \"q3mNw6tYnUbwAPjvbIx4uzCFNFCvFW6PP5Nu73Blo2I=\",\r\n \"secondaryKey\": \"2CrS4giFEmtr0qJeP/5UNBLz3GO3jxtTXeqDsMWMiwI=\",\r\n \"keyName\": \"sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-2691.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=eZRa3y8QzLuzwuxa12/c896ZeUo/kObJdJoTSeblOE8=;EntityPath=sdk-EventHub-\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-2691.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=Tp8fcOTtM5DeVYDlWk3Fiml4ojMiqK1a78XOfwrppw4=;EntityPath=sdk-EventHub-\",\r\n \"primaryKey\": \"eZRa3y8QzLuzwuxa12/c896ZeUo/kObJdJoTSeblOE8=\",\r\n \"secondaryKey\": \"Tp8fcOTtM5DeVYDlWk3Fiml4ojMiqK1a78XOfwrppw4=\",\r\n \"keyName\": \"sdk-Authrules-\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/regenerateKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLXRoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmeXRoZXJlbW92bGFvZjUwY2hhcnNuYW1lbGVuZ3RobGltaXQvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-/regenerateKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtL3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"PrimaryKey\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b078516d-10f9-4078-a420-aa8556a641a0" + "2f4bb7a9-9b04-4aae-9226-e8bd6cc6ebcc" ], "accept-language": [ "en-US" @@ -957,8 +1024,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -972,29 +1039,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:34 GMT" + "Mon, 11 May 2020 08:10:31 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ddd8022c-7425-4894-bbd3-b2692d98e885_M9CH3_M9CH3" + "ae3b09b2-0f7e-4602-b195-008079560e09_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "77f1c023-d534-48f7-bd04-18ba46811c5d" + "5eee79d1-cc5f-45bc-9009-af8513239ab0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002134Z:77f1c023-d534-48f7-bd04-18ba46811c5d" + "WESTUS:20200511T081031Z:5eee79d1-cc5f-45bc-9009-af8513239ab0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1003,7 +1070,7 @@ "nosniff" ], "Content-Length": [ - "959" + "550" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1012,17 +1079,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-3315.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit;SharedAccessKey=fHxnc+VEFidWxhz3EGUZCvKBmzbd5fRtiW3PAnR0bVc=;EntityPath=sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-3315.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit;SharedAccessKey=2CrS4giFEmtr0qJeP/5UNBLz3GO3jxtTXeqDsMWMiwI=;EntityPath=sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"primaryKey\": \"fHxnc+VEFidWxhz3EGUZCvKBmzbd5fRtiW3PAnR0bVc=\",\r\n \"secondaryKey\": \"2CrS4giFEmtr0qJeP/5UNBLz3GO3jxtTXeqDsMWMiwI=\",\r\n \"keyName\": \"sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-2691.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=qyu6NVtHPs5igEesjRhM5UPTtN7HaA6BQqDTbyvfaWk=;EntityPath=sdk-EventHub-\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-2691.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=Tp8fcOTtM5DeVYDlWk3Fiml4ojMiqK1a78XOfwrppw4=;EntityPath=sdk-EventHub-\",\r\n \"primaryKey\": \"qyu6NVtHPs5igEesjRhM5UPTtN7HaA6BQqDTbyvfaWk=\",\r\n \"secondaryKey\": \"Tp8fcOTtM5DeVYDlWk3Fiml4ojMiqK1a78XOfwrppw4=\",\r\n \"keyName\": \"sdk-Authrules-\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/regenerateKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLXRoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmeXRoZXJlbW92bGFvZjUwY2hhcnNuYW1lbGVuZ3RobGltaXQvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-/regenerateKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtL3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"SecondaryKey\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a337bf5a-5a3a-4626-8188-1071923182f8" + "5b809794-7d26-4cd9-a6c3-ae31e47176ea" ], "accept-language": [ "en-US" @@ -1030,8 +1097,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1045,29 +1112,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:34 GMT" + "Mon, 11 May 2020 08:10:32 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "466a7704-f231-437f-801a-30b49d22f8b7_M9CH3_M9CH3" + "4a0fb627-f8af-4881-a9ac-fa4323cf3a11_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "c8cfa2ee-d7ec-4719-8713-ed0d1349847a" + "1a0ed66b-0816-4fe3-aa94-060e91444b97" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002135Z:c8cfa2ee-d7ec-4719-8713-ed0d1349847a" + "WESTUS:20200511T081032Z:1a0ed66b-0816-4fe3-aa94-060e91444b97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1076,7 +1143,7 @@ "nosniff" ], "Content-Length": [ - "959" + "550" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1085,17 +1152,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-3315.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit;SharedAccessKey=fHxnc+VEFidWxhz3EGUZCvKBmzbd5fRtiW3PAnR0bVc=;EntityPath=sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-3315.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit;SharedAccessKey=4OS01RmkvSuQT8Nn1hXOvJWe9GdI/G5J+ol+yPYP/Hk=;EntityPath=sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\",\r\n \"primaryKey\": \"fHxnc+VEFidWxhz3EGUZCvKBmzbd5fRtiW3PAnR0bVc=\",\r\n \"secondaryKey\": \"4OS01RmkvSuQT8Nn1hXOvJWe9GdI/G5J+ol+yPYP/Hk=\",\r\n \"keyName\": \"sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-2691.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=qyu6NVtHPs5igEesjRhM5UPTtN7HaA6BQqDTbyvfaWk=;EntityPath=sdk-EventHub-\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-2691.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-;SharedAccessKey=YSgFsog9EagxAI+v6qEsD4bbz9X436NZw3p/9CVv9V0=;EntityPath=sdk-EventHub-\",\r\n \"primaryKey\": \"qyu6NVtHPs5igEesjRhM5UPTtN7HaA6BQqDTbyvfaWk=\",\r\n \"secondaryKey\": \"YSgFsog9EagxAI+v6qEsD4bbz9X436NZw3p/9CVv9V0=\",\r\n \"keyName\": \"sdk-Authrules-\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit/authorizationRules/sdk-Authrules-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0L2F1dGhvcml6YXRpb25SdWxlcy9zZGstQXV0aHJ1bGVzLXRoaXNpc3RoZW5hbWV3aXRobW9yZXRoYW41M2NoYXJzY2hlY2t0b3ZlcmlmeXRoZXJlbW92bGFvZjUwY2hhcnNuYW1lbGVuZ3RobGltaXQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-/authorizationRules/sdk-Authrules-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0vYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2be326e5-f6dd-4579-8110-3ba369d532be" + "ff375e58-575f-430f-b9cb-7fdbeacc81d1" ], "accept-language": [ "en-US" @@ -1103,8 +1170,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1112,29 +1179,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:35 GMT" + "Mon, 11 May 2020 08:10:33 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "9fb91312-55ca-46fe-9d8c-20fcc95cbe59_M9CH3_M9CH3" + "ccd15dc3-8ebc-429c-99a4-8e4ca6403b6b_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "f7e0d605-7daf-4e6b-81ca-d20f21c2688f" + "63d84d49-6631-4a67-a084-9efaaeee56b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002136Z:f7e0d605-7daf-4e6b-81ca-d20f21c2688f" + "WESTUS:20200511T081033Z:63d84d49-6631-4a67-a084-9efaaeee56b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1153,13 +1220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/eventhubs/sdk-EventHub-thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi10aGlzaXN0aGVuYW1ld2l0aG1vcmV0aGFuNTNjaGFyc2NoZWNrdG92ZXJpZnl0aGVyZW1vdmxhb2Y1MGNoYXJzbmFtZWxlbmd0aGxpbWl0P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/eventhubs/sdk-EventHub-?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvZXZlbnRodWJzL3Nkay1FdmVudEh1Yi0/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502982f4-962c-48d9-ab28-a8748d6fcad9" + "f3b3cfd2-77f3-435f-bb53-7c89f5827c21" ], "accept-language": [ "en-US" @@ -1167,8 +1234,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1176,29 +1243,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:42 GMT" + "Mon, 11 May 2020 08:10:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "960531a6-dc48-4f37-8bf8-57214e8bd04b_M9CH3_M9CH3" + "c49edaf2-d7f3-45a3-b164-03651acce642_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "c1f1da17-e02c-45e9-8f47-c24d718f94cf" + "7a9417ea-8a4b-4fa7-aec8-43ca5b1c3dd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002143Z:c1f1da17-e02c-45e9-8f47-c24d718f94cf" + "WESTUS:20200511T081039Z:7a9417ea-8a4b-4fa7-aec8-43ca5b1c3dd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1217,13 +1284,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTE/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3aa0423f-ec7b-4486-b758-c885f2b6b463" + "62a993bd-b9e3-4a1d-8b5f-33a321dd4c76" ], "accept-language": [ "en-US" @@ -1231,8 +1298,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1240,32 +1307,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:21:45 GMT" + "Mon, 11 May 2020 08:10:41 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/operationresults/sdk-Namespace-3315?api-version=2017-04-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/operationresults/sdk-NS-2691?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "11242ad5-1968-4dfa-9322-89003b99007d_M1CH3_M1CH3" + "b69361cb-7a65-49da-8913-d2693b5ec869_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], "x-ms-correlation-request-id": [ - "14c2dfc6-a6ce-40ae-b03d-a793fc5ca7a8" + "a2e03093-55ff-45bf-a768-8d350e7c0031" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002146Z:14c2dfc6-a6ce-40ae-b03d-a793fc5ca7a8" + "WESTUS:20200511T081041Z:a2e03093-55ff-45bf-a768-8d350e7c0031" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,16 +1351,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/operationresults/sdk-Namespace-3315?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTMzMTU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/operationresults/sdk-NS-2691?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjY5MT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1301,29 +1368,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:22:16 GMT" + "Mon, 11 May 2020 08:11:11 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5bf36de9-187c-4301-8b37-2268f5acc388_M1CH3_M1CH3" + "e44a3c94-0787-40dc-bb27-08bc6eee2534_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "c4b221f9-42f3-4917-90c8-b4761ad9aa50" + "be526b12-8772-4907-b32e-ff672ccb757e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002216Z:c4b221f9-42f3-4917-90c8-b4761ad9aa50" + "WESTUS:20200511T081112Z:be526b12-8772-4907-b32e-ff672ccb757e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1342,16 +1409,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3315/operationresults/sdk-Namespace-3315?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzMTUvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTMzMTU/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8084/providers/Microsoft.EventHub/namespaces/sdk-NS-2691/operationresults/sdk-NS-2691?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODA4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTI2OTEvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtMjY5MT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1359,29 +1426,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:22:16 GMT" + "Mon, 11 May 2020 08:11:11 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "5caaf6a4-f963-4764-b3d8-b6fb63873473_M1CH3_M1CH3" + "0f09430f-05ee-4533-b3b2-ef109f05fefa_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "d2c8b75b-72a4-47e0-84a4-b78e685e2c02" + "5fb58419-a31c-47e6-b024-d81f2e3ae769" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002216Z:d2c8b75b-72a4-47e0-84a4-b78e685e2c02" + "WESTUS:20200511T081112Z:5fb58419-a31c-47e6-b024-d81f2e3ae769" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1402,12 +1469,13 @@ ], "Names": { "EventhubCreateGetUpdateDeleteAuthorizationRules_Length": [ - "sdk-Namespace-3315" + "Default-EventHub-8084", + "sdk-NS-2691" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d", - "CreatePrimaryKey": "wK5NJXkHBpCa0aphhnUqT0uBlf3D4LTiG/2s0BrGH+k=", - "UpdatePrimaryKey": "zZ1CpYzOmuBFwkkeNWwRchEpr8DA8JZsjGXDoLQjSoM=" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e", + "CreatePrimaryKey": "n1tMfWmcgU+OrgH9+dPKtMJ6R3GzakA2SVvd8XiWQ6c=", + "UpdatePrimaryKey": "Nrax2EdUqNXI0SdJaXvnumkUSaEjrVQCS/QJ0cER12s=" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceBYOKCreateGetUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceBYOKCreateGetUpdateDelete.json new file mode 100644 index 000000000000..02272054c410 --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceBYOKCreateGetUpdateDelete.json @@ -0,0 +1,976 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-7714?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNzcxND9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf9964f9-f8d8-4505-9dd2-a2d2d4d04fee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:08:01 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "0f417f55-6c2c-4234-b434-5f0a202564b1" + ], + "x-ms-correlation-request-id": [ + "0f417f55-6c2c-4234-b434-5f0a202564b1" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170801Z:0f417f55-6c2c-4234-b434-5f0a202564b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "195" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7714\",\r\n \"name\": \"Default-EventHub-7714\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL2NsdXN0ZXJzL1BNVGVzdENsdXN0ZXI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c7a02dc-ca05-44c8-9cc1-f470884235ac" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:08:03 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "9ea7bd36-ee46-4de9-888d-528cab1781ad_M5SN1_M5SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "952f5ff5-a992-4ec1-9f6d-10d0ba4603cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170803Z:952f5ff5-a992-4ec1-9f6d-10d0ba4603cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "380" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Dedicated\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"name\": \"PMTestCluster\",\r\n \"type\": \"Microsoft.EventHub/clusters\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"createdAt\": \"2019-05-09T23:16:05.92Z\",\r\n \"updatedAt\": \"2019-05-09T23:16:05.92Z\",\r\n \"metricId\": \"PROD-BY3-533\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"sdk-Namespace-4046\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51069d42-7316-4afe-8671-3e96155a3286" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:08:05 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "f7a957cf-6900-43af-944d-afd47f739ce9_M5SN1_M5SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "b7610e6b-acc9-4120-93be-d70f93b83ee2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170805Z:b7610e6b-acc9-4120-93be-d70f93b83ee2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "53" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true,\r\n \"reason\": \"None\",\r\n \"message\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS00MDQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c78486ca-d72b-42e8-86f8-05905a88d8de" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "466" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:08:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "6cc3b199-5ebe-410e-818b-302bc7e95363_M2SN1_M2SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" + ], + "x-ms-correlation-request-id": [ + "7620f38d-e926-4fd5-9afb-d57db059d9fc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170810Z:7620f38d-e926-4fd5-9afb-d57db059d9fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1029" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046\",\r\n \"name\": \"sdk-Namespace-4046\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4046\",\r\n \"createdAt\": \"2020-05-08T17:08:09.933Z\",\r\n \"updatedAt\": \"2020-05-08T17:08:09.933Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-4046.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS00MDQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"identity\": {\r\n \"principalId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"sdktestingkey1\",\r\n \"keyVaultUri\": \"https://sdktestingkey.vault.azure.net/\",\r\n \"keyVersion\": \"\"\r\n }\r\n ],\r\n \"keySource\": \"Microsoft.KeyVault\"\r\n }\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4bd9dec-2983-4340-a254-05a62fc53314" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "928" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:10:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e8a84f20-e741-45b1-8762-2c61c5d98048_M3SN1_M3SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "48" + ], + "x-ms-correlation-request-id": [ + "dc85d8f5-51fd-407f-9f23-b06e5558d45e" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171002Z:dc85d8f5-51fd-407f-9f23-b06e5558d45e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1189" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046\",\r\n \"name\": \"sdk-Namespace-4046\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"sdktestingkey1\",\r\n \"keyVaultUri\": \"https://sdktestingkey.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4046\",\r\n \"createdAt\": \"2020-05-08T17:08:09.933Z\",\r\n \"updatedAt\": \"2020-05-08T17:10:00.467Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-4046.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS00MDQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:08:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a1b09d30-b1b8-4361-acb2-703053e2b179_M2SN1_M2SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "6d00f566-51cc-4277-83ba-cca2ee5b164a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170840Z:6d00f566-51cc-4277-83ba-cca2ee5b164a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1029" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046\",\r\n \"name\": \"sdk-Namespace-4046\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4046\",\r\n \"createdAt\": \"2020-05-08T17:08:09.933Z\",\r\n \"updatedAt\": \"2020-05-08T17:08:09.933Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-4046.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS00MDQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:09:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "afbb687a-8721-4c1f-9919-de5e91a9ba69_M5SN1_M5SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "4b47e1eb-384c-44bd-8aab-a10162551366" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170910Z:4b47e1eb-384c-44bd-8aab-a10162551366" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1025" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046\",\r\n \"name\": \"sdk-Namespace-4046\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"ActivatingIdentity\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4046\",\r\n \"createdAt\": \"2020-05-08T17:08:09.933Z\",\r\n \"updatedAt\": \"2020-05-08T17:09:00.277Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-4046.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS00MDQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:09:40 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e7b6761e-28e7-4926-af08-0b8bded2a4a7_M5SN1_M5SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "312a38ad-5447-4d13-b18f-e0c9c11176e2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170940Z:312a38ad-5447-4d13-b18f-e0c9c11176e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046\",\r\n \"name\": \"sdk-Namespace-4046\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4046\",\r\n \"createdAt\": \"2020-05-08T17:08:09.933Z\",\r\n \"updatedAt\": \"2020-05-08T17:09:17.693Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-4046.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS00MDQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac84f8be-4aed-43ec-bd60-12b2d950f895" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:09:51 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "a87a487a-4dbe-424e-a6a6-4ebae5a39c04_M3SN1_M3SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "04cb9414-f660-49fd-8a7f-ea2b4c3a4889" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170951Z:04cb9414-f660-49fd-8a7f-ea2b4c3a4889" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046\",\r\n \"name\": \"sdk-Namespace-4046\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4046\",\r\n \"createdAt\": \"2020-05-08T17:08:09.933Z\",\r\n \"updatedAt\": \"2020-05-08T17:09:17.693Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-4046.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS00MDQ2P2FwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:10:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "760590a1-821c-44dd-a6d3-a361cd831cf6_M6SN1_M6SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "f254369c-e5df-439b-907a-07db028b3035" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171037Z:f254369c-e5df-439b-907a-07db028b3035" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "1186" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4046\",\r\n \"name\": \"sdk-Namespace-4046\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"sdktestingkey1\",\r\n \"keyVaultUri\": \"https://sdktestingkey.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4046\",\r\n \"createdAt\": \"2020-05-08T17:08:09.933Z\",\r\n \"updatedAt\": \"2020-05-08T17:10:06.467Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-4046.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.KeyVault/vaults/SDKTestingKey?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9TREtUZXN0aW5nS2V5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8af1f237-5289-44ad-9e35-13cb41f1406f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:09:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.278" + ], + "x-ms-request-id": [ + "39eba70f-fd8a-487f-9c11-08657dd47461" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "df352a25-dbdf-4afc-aea7-fa35b64f0321" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170946Z:df352a25-dbdf-4afc-aea7-fa35b64f0321" + ], + "Content-Length": [ + "1508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.KeyVault/vaults/SDKTestingKey\",\r\n \"name\": \"SDKTestingKey\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"a3d617b7-249b-4e8f-968d-af9ffceb49db\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"List\",\r\n \"Set\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\",\r\n \"ManageContacts\",\r\n \"ManageIssuers\",\r\n \"GetIssuers\",\r\n \"ListIssuers\",\r\n \"SetIssuers\",\r\n \"DeleteIssuers\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"4a0767d9-5ab1-4edb-953e-ba90a5953cfa\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapkey\",\r\n \"unwrapkey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"8a58c6f1-0a17-47a3-843c-dc8f755c0290\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"6595afea-bf46-4614-9c21-79b0560dc2f0\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://sdktestingkey.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.KeyVault/vaults/SDKTestingKey?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9TREtUZXN0aW5nS2V5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a81c0b5-4558-4022-a19e-4091d8042807" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:10:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.278" + ], + "x-ms-request-id": [ + "6346c7ca-fd92-41ab-94e0-cf3f6f26cbf8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "38bcd242-cd61-4f84-9521-4e0cbc4f164f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171038Z:38bcd242-cd61-4f84-9521-4e0cbc4f164f" + ], + "Content-Length": [ + "1663" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.KeyVault/vaults/SDKTestingKey\",\r\n \"name\": \"SDKTestingKey\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"a3d617b7-249b-4e8f-968d-af9ffceb49db\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"List\",\r\n \"Set\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\",\r\n \"ManageContacts\",\r\n \"ManageIssuers\",\r\n \"GetIssuers\",\r\n \"ListIssuers\",\r\n \"SetIssuers\",\r\n \"DeleteIssuers\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"4a0767d9-5ab1-4edb-953e-ba90a5953cfa\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapkey\",\r\n \"unwrapkey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"8a58c6f1-0a17-47a3-843c-dc8f755c0290\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"6595afea-bf46-4614-9c21-79b0560dc2f0\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://sdktestingkey.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.KeyVault/vaults/SDKTestingKey?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9TREtUZXN0aW5nS2V5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"a3d617b7-249b-4e8f-968d-af9ffceb49db\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"List\",\r\n \"Set\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\",\r\n \"ManageContacts\",\r\n \"ManageIssuers\",\r\n \"GetIssuers\",\r\n \"ListIssuers\",\r\n \"SetIssuers\",\r\n \"DeleteIssuers\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"4a0767d9-5ab1-4edb-953e-ba90a5953cfa\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapkey\",\r\n \"unwrapkey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"8a58c6f1-0a17-47a3-843c-dc8f755c0290\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"6595afea-bf46-4614-9c21-79b0560dc2f0\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"https://sdktestingkey.vault.azure.net/\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "21baec84-8a8d-44ce-8032-21e5b71fa867" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2604" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:09:45 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.278" + ], + "x-ms-request-id": [ + "c35dec4e-1b7e-492f-83b2-dbd8198ca8df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "d4239fe3-6cdd-4492-b44c-79a1943dc328" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T170946Z:d4239fe3-6cdd-4492-b44c-79a1943dc328" + ], + "Content-Length": [ + "1663" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.KeyVault/vaults/SDKTestingKey\",\r\n \"name\": \"SDKTestingKey\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"a3d617b7-249b-4e8f-968d-af9ffceb49db\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"List\",\r\n \"Set\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\",\r\n \"ManageContacts\",\r\n \"ManageIssuers\",\r\n \"GetIssuers\",\r\n \"ListIssuers\",\r\n \"SetIssuers\",\r\n \"DeleteIssuers\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"4a0767d9-5ab1-4edb-953e-ba90a5953cfa\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapkey\",\r\n \"unwrapkey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"8a58c6f1-0a17-47a3-843c-dc8f755c0290\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"6595afea-bf46-4614-9c21-79b0560dc2f0\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"27bac45b-d1e0-4653-9a65-b8af771fe176\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://sdktestingkey.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.KeyVault/vaults/SDKTestingKey?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL3Byb2QtYnkzLTUzMy1yZy9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9TREtUZXN0aW5nS2V5P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"a3d617b7-249b-4e8f-968d-af9ffceb49db\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"List\",\r\n \"Set\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\",\r\n \"ManageContacts\",\r\n \"ManageIssuers\",\r\n \"GetIssuers\",\r\n \"ListIssuers\",\r\n \"SetIssuers\",\r\n \"DeleteIssuers\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"4a0767d9-5ab1-4edb-953e-ba90a5953cfa\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapkey\",\r\n \"unwrapkey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"8a58c6f1-0a17-47a3-843c-dc8f755c0290\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"6595afea-bf46-4614-9c21-79b0560dc2f0\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"https://sdktestingkey.vault.azure.net/\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e7697f2-b42e-46bb-9333-713ea6dc57fd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2323" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 08 May 2020 17:10:37 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.278" + ], + "x-ms-request-id": [ + "bf3c61ac-1dbb-4397-9fa5-21f167c6be0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "a574b925-cd26-4c12-a645-3e9605316439" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200508T171038Z:a574b925-cd26-4c12-a645-3e9605316439" + ], + "Content-Length": [ + "1508" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.KeyVault/vaults/SDKTestingKey\",\r\n \"name\": \"SDKTestingKey\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"a3d617b7-249b-4e8f-968d-af9ffceb49db\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"secrets\": [\r\n \"Get\",\r\n \"List\",\r\n \"Set\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\"\r\n ],\r\n \"certificates\": [\r\n \"Get\",\r\n \"List\",\r\n \"Update\",\r\n \"Create\",\r\n \"Import\",\r\n \"Delete\",\r\n \"Recover\",\r\n \"Backup\",\r\n \"Restore\",\r\n \"ManageContacts\",\r\n \"ManageIssuers\",\r\n \"GetIssuers\",\r\n \"ListIssuers\",\r\n \"SetIssuers\",\r\n \"DeleteIssuers\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"4a0767d9-5ab1-4edb-953e-ba90a5953cfa\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapkey\",\r\n \"unwrapkey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"8a58c6f1-0a17-47a3-843c-dc8f755c0290\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n },\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"6595afea-bf46-4614-9c21-79b0560dc2f0\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"get\",\r\n \"wrapKey\",\r\n \"unwrapKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://sdktestingkey.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": { + "NamespaceBYOKCreateGetUpdateDelete": [ + "Default-EventHub-7714", + "sdk-Namespace-4046" + ] + }, + "Variables": { + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" + } +} \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDelete.json index 300ac80fe14a..c622f25a61c5 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDelete.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDelete.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7880a8cb-14b3-4b1d-a333-1c2ef2dfc6e8" + "bc071680-2414-482d-bbdf-9313a7b6ddb9" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,22 +24,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:15:21 GMT" + "Mon, 11 May 2020 07:04:09 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "8d994dd2-1321-4d8b-8282-8957107ec126" + "3f0658fe-8d04-4722-b92d-1c77d7aadf3d" ], "x-ms-correlation-request-id": [ - "8d994dd2-1321-4d8b-8282-8957107ec126" + "3f0658fe-8d04-4722-b92d-1c77d7aadf3d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001522Z:8d994dd2-1321-4d8b-8282-8957107ec126" + "WESTUS:20200511T070409Z:3f0658fe-8d04-4722-b92d-1c77d7aadf3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "2435" + "3375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4315?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "218c2013-5868-474d-9604-3ee0bed324ef" + "024e2c24-06f1-436a-ba3f-0a37b9b33434" ], "accept-language": [ "en-US" @@ -75,8 +75,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" ] }, "ResponseHeaders": { @@ -84,22 +90,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:15:22 GMT" + "Mon, 11 May 2020 07:04:12 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "483a3d3f-0087-4ef1-b99e-b348099df0b1" + "bd23ce57-b25d-496b-acc4-75f26d54729f" ], "x-ms-correlation-request-id": [ - "483a3d3f-0087-4ef1-b99e-b348099df0b1" + "bd23ce57-b25d-496b-acc4-75f26d54729f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001522Z:483a3d3f-0087-4ef1-b99e-b348099df0b1" + "WESTUS:20200511T070412Z:bd23ce57-b25d-496b-acc4-75f26d54729f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +114,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,8 +123,8 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315\",\r\n \"name\": \"Default-EventHub-4315\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2017-04-01", @@ -127,7 +133,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ba33c78-d249-40d4-92f9-a2af9622afc5" + "4eb93cab-6b17-47c6-a55b-667ec2bfd26b" ], "accept-language": [ "en-US" @@ -135,8 +141,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -144,29 +150,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:15:22 GMT" + "Mon, 11 May 2020 07:04:12 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "840bc804-f541-46c5-8de7-30c7efaf9406_M11CH3_M11CH3" + "6d8b344e-fd22-4d76-8a70-4d9cc81def7b_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "5ffbb5a7-37ae-43db-8646-79d6e1dac92c" + "13a9204a-a6fb-4030-a67c-c6dbe9555094" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001522Z:5ffbb5a7-37ae-43db-8646-79d6e1dac92c" + "WESTUS:20200511T070412Z:13a9204a-a6fb-4030-a67c-c6dbe9555094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -175,7 +181,7 @@ "nosniff" ], "Content-Length": [ - "37257" + "43814" ], "Content-Type": [ "application/json; charset=utf-8" @@ -184,17 +190,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNamespaceAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription. This API is deprecated please use CheckNameAvailabiltiy instead.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Registers the EventHub Resource Provider\",\r\n \"description\": \"Registers the subscription for the EventHub resource provider and enables the creation of EventHub resources\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/unregister/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Registers the EventHub Resource Provider\",\r\n \"description\": \"Registers the EventHub Resource Provider\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/locations/deleteVirtualNetworkOrSubnets/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Deletes the VNet rules in EventHub Resource Provider for the specified VNet\",\r\n \"description\": \"Deletes the VNet rules in EventHub Resource Provider for the specified VNet\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and Capacity of the Namespace are the properties which can be updated.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the status of Namespace operation\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/regenerateKeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Resource Regeneratekeys\",\r\n \"description\": \"Regenerate the Primary or Secondary key to the Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingPlan/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Messaging Plan (Deprecated)\",\r\n \"description\": \"Gets the Messaging Plan for a namespace. This API is deprecated. Properties exposed via the MessagingPlan resource are moved to the (parent) Namespace resource in later API versions.. This operation is not supported on API version 2017-04-01.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingPlan/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create or Update Messaging Plan (Deprecated)\",\r\n \"description\": \"Updates the Messaging Plan for a namespace. This API is deprecated. Properties exposed via the MessagingPlan resource are moved to the (parent) Namespace resource in later API versions.. This operation is not supported on API version 2017-04-01.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Updates Namespace Authorization Rule (Deprecated)\",\r\n \"description\": \"Updates Namespace Authorization Rule. This API is depricated. Please use a PUT call to update the Namespace Authorization Rule instead.. This operation is not supported on API version 2017-04-01.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Create or Update EventHub\",\r\n \"description\": \"Create or Update EventHub properties.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Get EventHub\",\r\n \"description\": \"Get list of EventHub Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Delete EventHub\",\r\n \"description\": \"Operation to delete EventHub Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \" Get EventHub Authorization Rules\",\r\n \"description\": \" Get the list of EventHub Authorization Rules\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Create or Update EventHub Authorization Rule\",\r\n \"description\": \"Create EventHub Authorization Rules and Update its properties. The Authorization Rules Access Rights can be updated.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Delete EventHub Authorization Rules\",\r\n \"description\": \"Operation to delete EventHub Authorization Rules\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"List EventHub keys\",\r\n \"description\": \"Get the Connection String to EventHub\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/regenerateKeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Resource Regeneratekeys\",\r\n \"description\": \"Regenerate the Primary or Secondary key to the Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Update EventHub Authorization Rules (Deprecated)\",\r\n \"description\": \"Operation to update EventHub. This operation is not supported on API version 2017-04-01. Authorization Rules. Please use a PUT call to update Authorization Rule.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Create or Update ConsumerGroup\",\r\n \"description\": \"Create or Update ConsumerGroup properties.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Get ConsumerGroup\",\r\n \"description\": \"Get list of ConsumerGroup Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Delete ConsumerGroup\",\r\n \"description\": \"Operation to delete ConsumerGroup Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/sku/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Sku\",\r\n \"operation\": \"Get Sku\",\r\n \"description\": \"Get list of Sku Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/sku/regions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SkuRegions\",\r\n \"operation\": \"Get SkuRegions\",\r\n \"description\": \"Get list of SkuRegions Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Operations\",\r\n \"operation\": \"Get Operations\",\r\n \"description\": \"Get Operations\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace metrics\",\r\n \"operation\": \"Get Namespace metrics\",\r\n \"description\": \"Get list of Namespace metrics Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SuccessfulRequests\",\r\n \"displayName\": \"Successful Requests\",\r\n \"displayDescription\": \"Successful Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Success\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ServerErrors\",\r\n \"displayName\": \"Server Errors.\",\r\n \"displayDescription\": \"Server Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"InternalServerError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"UserErrors\",\r\n \"displayName\": \"User Errors.\",\r\n \"displayDescription\": \"User Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ClientError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"QuotaExceededErrors\",\r\n \"displayName\": \"Quota Exceeded Errors.\",\r\n \"displayDescription\": \"Quota Exceeded Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"QuotaExceeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ThrottledRequests\",\r\n \"displayName\": \"Throttled Requests.\",\r\n \"displayDescription\": \"Throttled Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ServerBusy\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingRequests\",\r\n \"displayName\": \"Incoming Requests\",\r\n \"displayDescription\": \"Incoming Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingMessages\",\r\n \"displayName\": \"Incoming Messages\",\r\n \"displayDescription\": \"Incoming Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingMessages\",\r\n \"displayName\": \"Outgoing Messages\",\r\n \"displayDescription\": \"Outgoing Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingBytes\",\r\n \"displayName\": \"Incoming Bytes.\",\r\n \"displayDescription\": \"Incoming Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingBytes\",\r\n \"displayName\": \"Outgoing Bytes.\",\r\n \"displayDescription\": \"Outgoing Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActiveConnections\",\r\n \"displayName\": \"ActiveConnections\",\r\n \"displayDescription\": \"Total Active Connections for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsOpened\",\r\n \"displayName\": \"Connections Opened.\",\r\n \"displayDescription\": \"Connections Opened for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsClosed\",\r\n \"displayName\": \"Connections Closed.\",\r\n \"displayDescription\": \"Connections Closed for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CaptureBacklog\",\r\n \"displayName\": \"Capture Backlog.\",\r\n \"displayDescription\": \"Capture Backlog for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchiveBacklog\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedMessages\",\r\n \"displayName\": \"Captured Messages.\",\r\n \"displayDescription\": \"Captured Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedBytes\",\r\n \"displayName\": \"Captured Bytes.\",\r\n \"displayDescription\": \"Captured Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"Size\",\r\n \"displayName\": \"Size\",\r\n \"displayDescription\": \"Size of an EventHub in Bytes.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"EntitySize\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Min\",\r\n \"Max\"\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INREQS\",\r\n \"displayName\": \"Incoming Requests (Deprecated)\",\r\n \"displayDescription\": \"Total incoming send requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"SUCCREQ\",\r\n \"displayName\": \"Successful Requests (Deprecated)\",\r\n \"displayDescription\": \"Total successful requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"FAILREQ\",\r\n \"displayName\": \"Failed Requests (Deprecated)\",\r\n \"displayDescription\": \"Total failed requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"SVRBSY\",\r\n \"displayName\": \"Server Busy Errors (Deprecated)\",\r\n \"displayDescription\": \"Total server busy errors for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INTERR\",\r\n \"displayName\": \"Internal Server Errors (Deprecated)\",\r\n \"displayDescription\": \"Total internal server errors for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"MISCERR\",\r\n \"displayName\": \"Other Errors (Deprecated)\",\r\n \"displayDescription\": \"Total failed requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INMSGS\",\r\n \"displayName\": \"Incoming Messages (Deprecated) (Deprecated)\",\r\n \"displayDescription\": \"Total incoming messages for a namespace. This metric is deprecated. Please use Incoming Messages metric instead (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINMSGS\",\r\n \"displayName\": \"Incoming Messages (Deprecated)\",\r\n \"displayDescription\": \"Total incoming messages for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OUTMSGS\",\r\n \"displayName\": \"Outgoing Messages (Deprecated) (Deprecated)\",\r\n \"displayDescription\": \"Total outgoing messages for a namespace. This metric is deprecated. Please use Outgoing Messages metric instead (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTMSGS\",\r\n \"displayName\": \"Outgoing Messages (Deprecated)\",\r\n \"displayDescription\": \"Total outgoing messages for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINMBS\",\r\n \"displayName\": \"Incoming bytes (Deprecated) (Deprecated)\",\r\n \"displayDescription\": \"Event Hub incoming message throughput for a namespace. This metric is deprecated. Please use Incoming bytes metric instead (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINBYTES\",\r\n \"displayName\": \"Incoming bytes (Deprecated)\",\r\n \"displayDescription\": \"Event Hub incoming message throughput for a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTMBS\",\r\n \"displayName\": \"Outgoing bytes (Deprecated) (Deprecated)\",\r\n \"displayDescription\": \"Event Hub outgoing message throughput for a namespace. This metric is deprecated. Please use Outgoing bytes metric instead (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTBYTES\",\r\n \"displayName\": \"Outgoing bytes (Deprecated)\",\r\n \"displayDescription\": \"Event Hub outgoing message throughput for a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHABL\",\r\n \"displayName\": \"Archive backlog messages (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archive messages in backlog for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHAMSGS\",\r\n \"displayName\": \"Archive messages (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archived messages in a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHAMBS\",\r\n \"displayName\": \"Archive message throughput (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archived message throughput in a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster metrics\",\r\n \"operation\": \"Get Cluster metrics\",\r\n \"description\": \"Get list of Cluster metrics Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SuccessfulRequests\",\r\n \"displayName\": \"Successful Requests (Preview)\",\r\n \"displayDescription\": \"Successful Requests for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Success\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ServerErrors\",\r\n \"displayName\": \"Server Errors. (Preview)\",\r\n \"displayDescription\": \"Server Errors for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"InternalServerError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"UserErrors\",\r\n \"displayName\": \"User Errors. (Preview)\",\r\n \"displayDescription\": \"User Errors for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ClientError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"QuotaExceededErrors\",\r\n \"displayName\": \"Quota Exceeded Errors. (Preview)\",\r\n \"displayDescription\": \"Quota Exceeded Errors for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"QuotaExceeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ThrottledRequests\",\r\n \"displayName\": \"Throttled Requests. (Preview)\",\r\n \"displayDescription\": \"Throttled Requests for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ServerBusy\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingRequests\",\r\n \"displayName\": \"Incoming Requests (Preview)\",\r\n \"displayDescription\": \"Incoming Requests for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingMessages\",\r\n \"displayName\": \"Incoming Messages (Preview)\",\r\n \"displayDescription\": \"Incoming Messages for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingMessages\",\r\n \"displayName\": \"Outgoing Messages (Preview)\",\r\n \"displayDescription\": \"Outgoing Messages for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingBytes\",\r\n \"displayName\": \"Incoming Bytes. (Preview)\",\r\n \"displayDescription\": \"Incoming Bytes for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingBytes\",\r\n \"displayName\": \"Outgoing Bytes. (Preview)\",\r\n \"displayDescription\": \"Outgoing Bytes for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActiveConnections\",\r\n \"displayName\": \"ActiveConnections (Preview)\",\r\n \"displayDescription\": \"Total Active Connections for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsOpened\",\r\n \"displayName\": \"Connections Opened. (Preview)\",\r\n \"displayDescription\": \"Connections Opened for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsClosed\",\r\n \"displayName\": \"Connections Closed. (Preview)\",\r\n \"displayDescription\": \"Connections Closed for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CaptureBacklog\",\r\n \"displayName\": \"Capture Backlog. (Preview)\",\r\n \"displayDescription\": \"Capture Backlog for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchiveBacklog\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedMessages\",\r\n \"displayName\": \"Captured Messages. (Preview)\",\r\n \"displayDescription\": \"Captured Messages for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedMessages\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedBytes\",\r\n \"displayName\": \"Captured Bytes. (Preview)\",\r\n \"displayDescription\": \"Captured Bytes for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CPU\",\r\n \"displayName\": \"CPU (Preview)\",\r\n \"displayDescription\": \"CPU utilization for the Event Hub Cluster as a percentage\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"Processor\\\\% Processor Time\",\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"PerformanceCountersV2\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"AvailableMemory\",\r\n \"displayName\": \"Available Memory (Preview)\",\r\n \"displayDescription\": \"Available memory for the Event Hub Cluster in bytes\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"Memory\\\\Available MBytes\",\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"PerformanceCountersV2\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace diagnostic settings\",\r\n \"operation\": \"Get Namespace diagnostic settings\",\r\n \"description\": \"Get list of Namespace diagnostic settings Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace diagnostic settings\",\r\n \"operation\": \"Create or Update Namespace diagnostic settings\",\r\n \"description\": \"Get list of Namespace diagnostic settings Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace logs\",\r\n \"operation\": \"Get Namespace logs\",\r\n \"description\": \"Get list of Namespace logs Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"ArchiveLogs\",\r\n \"displayName\": \"Archive Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"OperationalLogs\",\r\n \"displayName\": \"Operational Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"AutoScaleLogs\",\r\n \"displayName\": \"Auto Scale Logs\",\r\n \"blobDuration\": \"PT10M\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterrecoveryconfigs/checkNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get alias availability.\",\r\n \"description\": \"Checks availability of namespace alias under given subscription.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Create or Update Disaster Recovery configuration.\",\r\n \"description\": \"Creates or Updates the Disaster Recovery configuration associated with the namespace.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Get Disaster Recovery configuration\",\r\n \"description\": \"Gets the Disaster Recovery configuration associated with the namespace.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Delete Disaster Recovery configuration\",\r\n \"description\": \"Deletes the Disaster Recovery configuration associated with the namespace. This operation can only be invoked via the primary namespace.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/breakPairing/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Break Pairing\",\r\n \"description\": \"Disables Disaster Recovery and stops replicating changes from primary to secondary namespaces.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/failover/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Failover\",\r\n \"description\": \"Invokes a GEO DR failover and reconfigures the namespace alias to point to the secondary namespace.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Disaster Recovery Primary Namespace's Authorization Rules\",\r\n \"description\": \"Get Disaster Recovery Primary Namespace's Authorization Rules\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Gets the authorization rules keys for the Disaster Recovery primary namespace\",\r\n \"description\": \"Gets the authorization rules keys for the Disaster Recovery primary namespace\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/removeAcsNamepsace/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Remove ACS namespace\",\r\n \"operation\": \"Remove ACS namespace\",\r\n \"description\": \"Remove ACS namespace\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Get IP Filter Resource\",\r\n \"description\": \"Get IP Filter Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Create IP Filter Resource\",\r\n \"description\": \"Create IP Filter Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Delete IP Filter Resource\",\r\n \"description\": \"Delete IP Filter Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Gets VNET Rule Resource\",\r\n \"description\": \"Gets VNET Rule Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Create VNET Rule Resource\",\r\n \"description\": \"Create VNET Rule Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Delete VNET Rule Resource\",\r\n \"description\": \"Delete VNET Rule Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Get Cluster Resource\",\r\n \"description\": \"Gets the Cluster Resource Description\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Get Cluster Resource\",\r\n \"description\": \"Gets the Cluster Resource Description\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNamespaceAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription. This API is deprecated please use CheckNameAvailabiltiy instead.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Registers the EventHub Resource Provider\",\r\n \"description\": \"Registers the subscription for the EventHub resource provider and enables the creation of EventHub resources\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/unregister/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Registers the EventHub Resource Provider\",\r\n \"description\": \"Registers the EventHub Resource Provider\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/locations/deleteVirtualNetworkOrSubnets/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Deletes the VNet rules in EventHub Resource Provider for the specified VNet\",\r\n \"description\": \"Deletes the VNet rules in EventHub Resource Provider for the specified VNet\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and Capacity of the Namespace are the properties which can be updated.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the status of Namespace operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/regenerateKeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Resource Regeneratekeys\",\r\n \"description\": \"Regenerate the Primary or Secondary key to the Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingPlan/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Messaging Plan (Deprecated)\",\r\n \"description\": \"Gets the Messaging Plan for a namespace. This API is deprecated. Properties exposed via the MessagingPlan resource are moved to the (parent) Namespace resource in later API versions.. This operation is not supported on API version 2017-04-01.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingPlan/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create or Update Messaging Plan (Deprecated)\",\r\n \"description\": \"Updates the Messaging Plan for a namespace. This API is deprecated. Properties exposed via the MessagingPlan resource are moved to the (parent) Namespace resource in later API versions.. This operation is not supported on API version 2017-04-01.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Updates Namespace Authorization Rule (Deprecated)\",\r\n \"description\": \"Updates Namespace Authorization Rule. This API is depricated. Please use a PUT call to update the Namespace Authorization Rule instead.. This operation is not supported on API version 2017-04-01.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Create or Update EventHub\",\r\n \"description\": \"Create or Update EventHub properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Get EventHub\",\r\n \"description\": \"Get list of EventHub Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Delete EventHub\",\r\n \"description\": \"Operation to delete EventHub Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \" Get EventHub Authorization Rules\",\r\n \"description\": \" Get the list of EventHub Authorization Rules\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Create or Update EventHub Authorization Rule\",\r\n \"description\": \"Create EventHub Authorization Rules and Update its properties. The Authorization Rules Access Rights can be updated.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Delete EventHub Authorization Rules\",\r\n \"description\": \"Operation to delete EventHub Authorization Rules\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"List EventHub keys\",\r\n \"description\": \"Get the Connection String to EventHub\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/regenerateKeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Resource Regeneratekeys\",\r\n \"description\": \"Regenerate the Primary or Secondary key to the Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Update EventHub Authorization Rules (Deprecated)\",\r\n \"description\": \"Operation to update EventHub. This operation is not supported on API version 2017-04-01. Authorization Rules. Please use a PUT call to update Authorization Rule.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Create or Update ConsumerGroup\",\r\n \"description\": \"Create or Update ConsumerGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Get ConsumerGroup\",\r\n \"description\": \"Get list of ConsumerGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Delete ConsumerGroup\",\r\n \"description\": \"Operation to delete ConsumerGroup Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/sku/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Sku\",\r\n \"operation\": \"Get Sku\",\r\n \"description\": \"Get list of Sku Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/sku/regions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SkuRegions\",\r\n \"operation\": \"Get SkuRegions\",\r\n \"description\": \"Get list of SkuRegions Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Operations\",\r\n \"operation\": \"Get Operations\",\r\n \"description\": \"Get Operations\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace metrics\",\r\n \"operation\": \"Get Namespace metrics\",\r\n \"description\": \"Get list of Namespace metrics Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SuccessfulRequests\",\r\n \"displayName\": \"Successful Requests\",\r\n \"displayDescription\": \"Successful Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Success\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ServerErrors\",\r\n \"displayName\": \"Server Errors.\",\r\n \"displayDescription\": \"Server Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"InternalServerError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"UserErrors\",\r\n \"displayName\": \"User Errors.\",\r\n \"displayDescription\": \"User Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ClientError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"QuotaExceededErrors\",\r\n \"displayName\": \"Quota Exceeded Errors.\",\r\n \"displayDescription\": \"Quota Exceeded Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"QuotaExceeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ThrottledRequests\",\r\n \"displayName\": \"Throttled Requests.\",\r\n \"displayDescription\": \"Throttled Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ServerBusy\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingRequests\",\r\n \"displayName\": \"Incoming Requests\",\r\n \"displayDescription\": \"Incoming Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingMessages\",\r\n \"displayName\": \"Incoming Messages\",\r\n \"displayDescription\": \"Incoming Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingMessages\",\r\n \"displayName\": \"Outgoing Messages\",\r\n \"displayDescription\": \"Outgoing Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingBytes\",\r\n \"displayName\": \"Incoming Bytes.\",\r\n \"displayDescription\": \"Incoming Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingBytes\",\r\n \"displayName\": \"Outgoing Bytes.\",\r\n \"displayDescription\": \"Outgoing Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActiveConnections\",\r\n \"displayName\": \"ActiveConnections\",\r\n \"displayDescription\": \"Total Active Connections for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsOpened\",\r\n \"displayName\": \"Connections Opened.\",\r\n \"displayDescription\": \"Connections Opened for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsClosed\",\r\n \"displayName\": \"Connections Closed.\",\r\n \"displayDescription\": \"Connections Closed for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CaptureBacklog\",\r\n \"displayName\": \"Capture Backlog.\",\r\n \"displayDescription\": \"Capture Backlog for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchiveBacklog\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedMessages\",\r\n \"displayName\": \"Captured Messages.\",\r\n \"displayDescription\": \"Captured Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedBytes\",\r\n \"displayName\": \"Captured Bytes.\",\r\n \"displayDescription\": \"Captured Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"Size\",\r\n \"displayName\": \"Size\",\r\n \"displayDescription\": \"Size of an EventHub in Bytes.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"EntitySize\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Min\",\r\n \"Max\"\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INREQS\",\r\n \"displayName\": \"Incoming Requests (Deprecated)\",\r\n \"displayDescription\": \"Total incoming send requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"SUCCREQ\",\r\n \"displayName\": \"Successful Requests (Deprecated)\",\r\n \"displayDescription\": \"Total successful requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"FAILREQ\",\r\n \"displayName\": \"Failed Requests (Deprecated)\",\r\n \"displayDescription\": \"Total failed requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"SVRBSY\",\r\n \"displayName\": \"Server Busy Errors (Deprecated)\",\r\n \"displayDescription\": \"Total server busy errors for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INTERR\",\r\n \"displayName\": \"Internal Server Errors (Deprecated)\",\r\n \"displayDescription\": \"Total internal server errors for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"MISCERR\",\r\n \"displayName\": \"Other Errors (Deprecated)\",\r\n \"displayDescription\": \"Total failed requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INMSGS\",\r\n \"displayName\": \"Incoming Messages (obsolete) (Deprecated)\",\r\n \"displayDescription\": \"Total incoming messages for a namespace. This metric is deprecated. Please use Incoming Messages metric instead (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINMSGS\",\r\n \"displayName\": \"Incoming Messages (Deprecated)\",\r\n \"displayDescription\": \"Total incoming messages for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OUTMSGS\",\r\n \"displayName\": \"Outgoing Messages (obsolete) (Deprecated)\",\r\n \"displayDescription\": \"Total outgoing messages for a namespace. This metric is deprecated. Please use Outgoing Messages metric instead (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTMSGS\",\r\n \"displayName\": \"Outgoing Messages (Deprecated)\",\r\n \"displayDescription\": \"Total outgoing messages for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINMBS\",\r\n \"displayName\": \"Incoming bytes (obsolete) (Deprecated)\",\r\n \"displayDescription\": \"Event Hub incoming message throughput for a namespace. This metric is deprecated. Please use Incoming bytes metric instead (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINBYTES\",\r\n \"displayName\": \"Incoming bytes (Deprecated)\",\r\n \"displayDescription\": \"Event Hub incoming message throughput for a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTMBS\",\r\n \"displayName\": \"Outgoing bytes (obsolete) (Deprecated)\",\r\n \"displayDescription\": \"Event Hub outgoing message throughput for a namespace. This metric is deprecated. Please use Outgoing bytes metric instead (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTBYTES\",\r\n \"displayName\": \"Outgoing bytes (Deprecated)\",\r\n \"displayDescription\": \"Event Hub outgoing message throughput for a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHABL\",\r\n \"displayName\": \"Archive backlog messages (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archive messages in backlog for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHAMSGS\",\r\n \"displayName\": \"Archive messages (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archived messages in a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHAMBS\",\r\n \"displayName\": \"Archive message throughput (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archived message throughput in a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster metrics\",\r\n \"operation\": \"Get Cluster metrics\",\r\n \"description\": \"Get list of Cluster metrics Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SuccessfulRequests\",\r\n \"displayName\": \"Successful Requests\",\r\n \"displayDescription\": \"Successful Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Success\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ServerErrors\",\r\n \"displayName\": \"Server Errors.\",\r\n \"displayDescription\": \"Server Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"InternalServerError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"UserErrors\",\r\n \"displayName\": \"User Errors.\",\r\n \"displayDescription\": \"User Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ClientError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"QuotaExceededErrors\",\r\n \"displayName\": \"Quota Exceeded Errors.\",\r\n \"displayDescription\": \"Quota Exceeded Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"QuotaExceeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ThrottledRequests\",\r\n \"displayName\": \"Throttled Requests.\",\r\n \"displayDescription\": \"Throttled Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ServerBusy\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingRequests\",\r\n \"displayName\": \"Incoming Requests\",\r\n \"displayDescription\": \"Incoming Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingMessages\",\r\n \"displayName\": \"Incoming Messages\",\r\n \"displayDescription\": \"Incoming Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingMessages\",\r\n \"displayName\": \"Outgoing Messages\",\r\n \"displayDescription\": \"Outgoing Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingBytes\",\r\n \"displayName\": \"Incoming Bytes.\",\r\n \"displayDescription\": \"Incoming Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingBytes\",\r\n \"displayName\": \"Outgoing Bytes.\",\r\n \"displayDescription\": \"Outgoing Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActiveConnections\",\r\n \"displayName\": \"ActiveConnections\",\r\n \"displayDescription\": \"Total Active Connections for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsOpened\",\r\n \"displayName\": \"Connections Opened.\",\r\n \"displayDescription\": \"Connections Opened for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsClosed\",\r\n \"displayName\": \"Connections Closed.\",\r\n \"displayDescription\": \"Connections Closed for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CaptureBacklog\",\r\n \"displayName\": \"Capture Backlog.\",\r\n \"displayDescription\": \"Capture Backlog for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchiveBacklog\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedMessages\",\r\n \"displayName\": \"Captured Messages.\",\r\n \"displayDescription\": \"Captured Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedMessages\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedBytes\",\r\n \"displayName\": \"Captured Bytes.\",\r\n \"displayDescription\": \"Captured Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CPU\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU utilization for the Event Hub Cluster as a percentage\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"Processor\\\\% Processor Time\",\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"PerformanceCountersV2\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"AvailableMemory\",\r\n \"displayName\": \"Available Memory\",\r\n \"displayDescription\": \"Available memory for the Event Hub Cluster as a percentage of total memory.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NodeMemoryUtilization\",\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"Size\",\r\n \"displayName\": \"Size of an EventHub in Bytes.\",\r\n \"displayDescription\": \"Size of an EventHub in Bytes.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"EntitySize\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Min\",\r\n \"Max\"\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace diagnostic settings\",\r\n \"operation\": \"Get Namespace diagnostic settings\",\r\n \"description\": \"Get list of Namespace diagnostic settings Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace diagnostic settings\",\r\n \"operation\": \"Create or Update Namespace diagnostic settings\",\r\n \"description\": \"Get list of Namespace diagnostic settings Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace logs\",\r\n \"operation\": \"Get Namespace logs\",\r\n \"description\": \"Get list of Namespace logs Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"ArchiveLogs\",\r\n \"displayName\": \"Archive Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"OperationalLogs\",\r\n \"displayName\": \"Operational Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"AutoScaleLogs\",\r\n \"displayName\": \"Auto Scale Logs\",\r\n \"blobDuration\": \"PT10M\"\r\n },\r\n {\r\n \"name\": \"KafkaCoordinatorLogs\",\r\n \"displayName\": \"Kafka Coordinator Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"KafkaUserErrorLogs\",\r\n \"displayName\": \"Kafka User Error Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"EventHubVNetConnectionEvent\",\r\n \"displayName\": \"VNet/IP Filtering Connection Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"CustomerManagedKeyUserLogs\",\r\n \"displayName\": \"Customer Managed Key Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n }\r\n ]\r\n }\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterrecoveryconfigs/checkNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get alias availability.\",\r\n \"description\": \"Checks availability of namespace alias under given subscription.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Create or Update Disaster Recovery configuration.\",\r\n \"description\": \"Creates or Updates the Disaster Recovery configuration associated with the namespace.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Get Disaster Recovery configuration\",\r\n \"description\": \"Gets the Disaster Recovery configuration associated with the namespace.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Delete Disaster Recovery configuration\",\r\n \"description\": \"Deletes the Disaster Recovery configuration associated with the namespace. This operation can only be invoked via the primary namespace.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/breakPairing/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Break Pairing\",\r\n \"description\": \"Disables Disaster Recovery and stops replicating changes from primary to secondary namespaces.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/failover/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Failover\",\r\n \"description\": \"Invokes a GEO DR failover and reconfigures the namespace alias to point to the secondary namespace.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Disaster Recovery Primary Namespace's Authorization Rules\",\r\n \"description\": \"Get Disaster Recovery Primary Namespace's Authorization Rules\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Gets the authorization rules keys for the Disaster Recovery primary namespace\",\r\n \"description\": \"Gets the authorization rules keys for the Disaster Recovery primary namespace\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messages/send/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Messages\",\r\n \"operation\": \"Send messages\",\r\n \"description\": \"Send messages\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messages/receive/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Messages\",\r\n \"operation\": \"Receive messages\",\r\n \"description\": \"Receive messages\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/removeAcsNamepsace/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Remove ACS namespace\",\r\n \"operation\": \"Remove ACS namespace\",\r\n \"description\": \"Remove ACS namespace\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Get IP Filter Resource\",\r\n \"description\": \"Get IP Filter Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Create IP Filter Resource\",\r\n \"description\": \"Create IP Filter Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Delete IP Filter Resource\",\r\n \"description\": \"Delete IP Filter Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Gets VNET Rule Resource\",\r\n \"description\": \"Gets VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Create VNET Rule Resource\",\r\n \"description\": \"Create VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Delete VNET Rule Resource\",\r\n \"description\": \"Delete VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkrulesets/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Gets NetworkRuleSet Resource\",\r\n \"description\": \"Gets NetworkRuleSet Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkrulesets/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Create VNET Rule Resource\",\r\n \"description\": \"Create VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkrulesets/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Delete VNET Rule Resource\",\r\n \"description\": \"Delete VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkruleset/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Gets NetworkRuleSet Resource\",\r\n \"description\": \"Gets NetworkRuleSet Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkruleset/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Create VNET Rule Resource\",\r\n \"description\": \"Create VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkruleset/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Delete VNET Rule Resource\",\r\n \"description\": \"Delete VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Get Cluster Resource\",\r\n \"description\": \"Gets the Cluster Resource Description\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Write on Cluster Resource\",\r\n \"description\": \"Creates or modifies an existing Cluster resource.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Delete Cluster Resource\",\r\n \"description\": \"Deletes an existing Cluster resource.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/availableClusterRegions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"List available clusters read operation\",\r\n \"description\": \"Read operation to list available pre-provisioned clusters by Azure region.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/namespaces/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"List namespaces within a cluster read operation\",\r\n \"description\": \"List namespace ARM IDs for namespaces within a cluster.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get Cluster Resource\",\r\n \"description\": \"Get the status of an asynchronous cluster operation.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/validate/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection Proxy\",\r\n \"operation\": \"Validate Private Endpoint Connection Proxy\",\r\n \"description\": \"Validate Private Endpoint Connection Proxy\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection Proxy\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy\",\r\n \"description\": \"Get Private Endpoint Connection Proxy\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection Proxy\",\r\n \"operation\": \"Create Private Endpoint Connection Proxy\",\r\n \"description\": \"Create Private Endpoint Connection Proxy\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection Proxy\",\r\n \"operation\": \"Delete Private Endpoint Connection Proxy\",\r\n \"description\": \"Delete Private Endpoint Connection Proxy\"\r\n },\r\n \"isDataAction\": false\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub/CheckNameAvailability?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-Namespace-3384\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-4740\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "819f8994-847b-4c5a-8fcf-2cded3734a3d" + "8172f97f-6011-419e-be27-fbd4e862c2e5" ], "accept-language": [ "en-US" @@ -202,14 +208,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "29" ] }, "ResponseHeaders": { @@ -217,29 +223,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:15:22 GMT" + "Mon, 11 May 2020 07:04:12 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ae3be973-953d-4722-91be-0937559237ed_M0CH3_M0CH3" + "cd00c254-4bd0-4620-a503-b498c9b3a3de_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "78fb5c3a-35b7-4e0d-a3b6-57e4af304615" + "b2327e3f-63ed-4e68-8db9-a71d7a627d78" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001522Z:78fb5c3a-35b7-4e0d-a3b6-57e4af304615" + "WESTUS:20200511T070413Z:b2327e3f-63ed-4e68-8db9-a71d7a627d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -261,13 +267,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDA/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "88956c37-a8e6-467d-bce4-be8eeb281e87" + "b86c2a6f-5056-4ed1-8ebe-bbea2d68320c" ], "accept-language": [ "en-US" @@ -275,8 +281,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -290,29 +296,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:15:25 GMT" + "Mon, 11 May 2020 07:04:19 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "cb4d2e93-52d6-499a-bb01-3f36a0275164_M11CH3_M11CH3" + "9d92f680-d2d5-489f-af1d-1107103d5ecf_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "a7cd3fc8-5958-4056-a316-e3349515fa6e" + "2a459c92-4689-4601-b837-8fd5c5ba9831" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001526Z:a7cd3fc8-5958-4056-a316-e3349515fa6e" + "WESTUS:20200511T070419Z:2a459c92-4689-4601-b837-8fd5c5ba9831" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -321,7 +327,7 @@ "nosniff" ], "Content-Length": [ - "729" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -330,20 +336,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384\",\r\n \"name\": \"sdk-Namespace-3384\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3384\",\r\n \"createdAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"updatedAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3384.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740\",\r\n \"name\": \"sdk-NS-4740\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4740\",\r\n \"createdAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"updatedAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4740.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDA/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -351,29 +357,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:15:56 GMT" + "Mon, 11 May 2020 07:04:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c166c226-2fff-4167-8456-b65a1b2d8721_M9CH3_M9CH3" + "9a43b2be-a239-4e10-91d9-1a8d9fb3f938_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "afa624cb-f760-4913-81c0-33ed47684829" + "81cc818c-9dd1-4960-9659-e41bd9e43e3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001556Z:afa624cb-f760-4913-81c0-33ed47684829" + "WESTUS:20200511T070450Z:81cc818c-9dd1-4960-9659-e41bd9e43e3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,7 +388,7 @@ "nosniff" ], "Content-Length": [ - "729" + "711" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,20 +397,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384\",\r\n \"name\": \"sdk-Namespace-3384\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3384\",\r\n \"createdAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"updatedAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3384.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740\",\r\n \"name\": \"sdk-NS-4740\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4740\",\r\n \"createdAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"updatedAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4740.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDA/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -412,29 +418,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:16:26 GMT" + "Mon, 11 May 2020 07:05:20 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "936fb48e-ce10-4c83-b75d-e215fa4d7f1a_M6CH3_M6CH3" + "082fba27-fd82-4a5e-acac-c38b46bfe634_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "a55cef56-f8fc-408f-8bd5-1de7a8d6ee27" + "382575eb-25e3-4e09-aa0e-a8d7b206b36e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001626Z:a55cef56-f8fc-408f-8bd5-1de7a8d6ee27" + "WESTUS:20200511T070520Z:382575eb-25e3-4e09-aa0e-a8d7b206b36e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -443,7 +449,7 @@ "nosniff" ], "Content-Length": [ - "726" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -452,17 +458,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384\",\r\n \"name\": \"sdk-Namespace-3384\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3384\",\r\n \"createdAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"updatedAt\": \"2019-02-01T00:15:56.81Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3384.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740\",\r\n \"name\": \"sdk-NS-4740\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4740\",\r\n \"createdAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"updatedAt\": \"2020-05-11T07:05:05.447Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4740.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDA/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9387071-7151-4222-8da9-dae8462e788b" + "5507a5dd-4e06-4b08-885f-7d81fd0a5329" ], "accept-language": [ "en-US" @@ -470,8 +476,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -479,29 +485,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:16:31 GMT" + "Mon, 11 May 2020 07:05:25 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "fa995452-a68b-45b3-8e66-aec2eeb57f88_M10CH3_M10CH3" + "0d867326-52c1-4c6f-b3eb-a68438a395d0_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "0dcd9357-4e15-41fa-9266-822ec8da7267" + "0593ddb9-76bb-4249-a75f-47b77cd55bb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001631Z:0dcd9357-4e15-41fa-9266-822ec8da7267" + "WESTUS:20200511T070525Z:0593ddb9-76bb-4249-a75f-47b77cd55bb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -510,7 +516,7 @@ "nosniff" ], "Content-Length": [ - "726" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -519,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384\",\r\n \"name\": \"sdk-Namespace-3384\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3384\",\r\n \"createdAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"updatedAt\": \"2019-02-01T00:15:56.81Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3384.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740\",\r\n \"name\": \"sdk-NS-4740\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4740\",\r\n \"createdAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"updatedAt\": \"2020-05-11T07:05:05.447Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4740.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDA/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "600c589a-a523-45f6-bcc4-6c3daa92f61e" + "c7f3215f-c757-4832-824f-faf25c23b463" ], "accept-language": [ "en-US" @@ -537,8 +543,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -546,29 +552,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:16:31 GMT" + "Mon, 11 May 2020 07:05:25 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "46cbda7e-d57f-4025-90c8-b4ec71c41f5d_M10CH3_M10CH3" + "e6cc7764-115d-46bb-b5ff-a68fedf45d74_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], "x-ms-correlation-request-id": [ - "1226a815-3da3-473a-8c04-a69fb7472097" + "da1ea6ad-b797-4aa3-be65-abde9bc5623b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001632Z:1226a815-3da3-473a-8c04-a69fb7472097" + "WESTUS:20200511T070525Z:da1ea6ad-b797-4aa3-be65-abde9bc5623b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -577,7 +583,7 @@ "nosniff" ], "Content-Length": [ - "726" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -586,17 +592,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384\",\r\n \"name\": \"sdk-Namespace-3384\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3384\",\r\n \"createdAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"updatedAt\": \"2019-02-01T00:15:56.81Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3384.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740\",\r\n \"name\": \"sdk-NS-4740\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4740\",\r\n \"createdAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"updatedAt\": \"2020-05-11T07:05:05.447Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4740.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDA/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed919ad5-dd8b-4237-84e4-41b076bc8438" + "cfd2c70d-250d-4e1f-9457-9af1130a3fcc" ], "accept-language": [ "en-US" @@ -604,8 +610,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -613,29 +619,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:16:35 GMT" + "Mon, 11 May 2020 07:05:29 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b8436982-d818-463c-8af3-a785d6e2249b_M7CH3_M7CH3" + "effb8e1c-a6ca-4f99-ae4e-bb57fb8c1d8a_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "f809aea4-6c0c-47fe-b280-d4082e1ab0aa" + "ce20100f-ccdd-412c-9219-0b4bd8c08f66" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001635Z:f809aea4-6c0c-47fe-b280-d4082e1ab0aa" + "WESTUS:20200511T070529Z:ce20100f-ccdd-412c-9219-0b4bd8c08f66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -644,7 +650,7 @@ "nosniff" ], "Content-Length": [ - "730" + "712" ], "Content-Type": [ "application/json; charset=utf-8" @@ -653,17 +659,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384\",\r\n \"name\": \"sdk-Namespace-3384\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3384\",\r\n \"createdAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"updatedAt\": \"2019-02-01T00:16:33.293Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3384.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740\",\r\n \"name\": \"sdk-NS-4740\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4740\",\r\n \"createdAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"updatedAt\": \"2020-05-11T07:05:26.377Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4740.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b89de1f2-991a-48b7-8923-8e5985244acd" + "f8b2ef39-8aa1-4942-9a7f-154fa8068d84" ], "accept-language": [ "en-US" @@ -671,8 +677,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -680,29 +686,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:16:31 GMT" + "Mon, 11 May 2020 07:05:25 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b3c1fedb-6236-4577-8d7b-c2161ff8a823_M10CH3_M10CH3" + "90110449-cbf8-4ab9-b392-d8b0f7bd13fd_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "01f99841-f42c-45aa-b1d5-cb21e4200cd4" + "fe6b63b5-6380-481a-ba79-28d25459a351" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001632Z:01f99841-f42c-45aa-b1d5-cb21e4200cd4" + "WESTUS:20200511T070525Z:fe6b63b5-6380-481a-ba79-28d25459a351" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,7 +717,7 @@ "nosniff" ], "Content-Length": [ - "5096" + "721" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,17 +726,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1627\",\r\n \"name\": \"sdk-Namespace-1627\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1627\",\r\n \"createdAt\": \"2019-01-31T23:29:09.06Z\",\r\n \"updatedAt\": \"2019-01-31T23:29:38.477Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1627.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2560\",\r\n \"name\": \"sdk-Namespace-2560\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-2560\",\r\n \"createdAt\": \"2019-01-19T02:02:10.703Z\",\r\n \"updatedAt\": \"2019-01-19T02:02:38.637Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-2560.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1302\",\r\n \"name\": \"sdk-Namespace-1302\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1302\",\r\n \"createdAt\": \"2019-01-19T01:56:34.033Z\",\r\n \"updatedAt\": \"2019-01-19T01:57:06.56Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1302.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-714\",\r\n \"name\": \"sdk-Namespace-714\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-714\",\r\n \"createdAt\": \"2019-01-19T01:50:56.84Z\",\r\n \"updatedAt\": \"2019-01-19T01:51:29.973Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-714.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384\",\r\n \"name\": \"sdk-Namespace-3384\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3384\",\r\n \"createdAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"updatedAt\": \"2019-02-01T00:15:56.81Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3384.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8479\",\r\n \"name\": \"sdk-Namespace-8479\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8479\",\r\n \"createdAt\": \"2019-01-19T01:50:37.26Z\",\r\n \"updatedAt\": \"2019-01-19T01:51:11.32Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8479.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8292\",\r\n \"name\": \"sdk-Namespace-8292\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8292\",\r\n \"createdAt\": \"2019-01-19T01:45:42.92Z\",\r\n \"updatedAt\": \"2019-01-19T01:46:11.333Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8292.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740\",\r\n \"name\": \"sdk-NS-4740\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4740\",\r\n \"createdAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"updatedAt\": \"2020-05-11T07:05:05.447Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4740.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub/namespaces?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01a63109-81c2-4c0e-87be-749cbf8b99be" + "e20ad2e8-9df0-4eba-b7cb-625613e62dd1" ], "accept-language": [ "en-US" @@ -738,8 +744,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -747,29 +753,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:16:31 GMT" + "Mon, 11 May 2020 07:05:25 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "09e5bea0-a498-4dcf-82be-d37bc7911b3d_M10CH3_M10CH3" + "3d46adc7-c3d9-4a84-b721-8ea1e116ce70_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "c599229e-e739-491c-a3b9-d6552c7a0b3a" + "30748666-1f7f-4636-bfef-ade04c8467c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001632Z:c599229e-e739-491c-a3b9-d6552c7a0b3a" + "WESTUS:20200511T070525Z:30748666-1f7f-4636-bfef-ade04c8467c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -778,7 +784,7 @@ "nosniff" ], "Content-Length": [ - "22018" + "56394" ], "Content-Type": [ "application/json; charset=utf-8" @@ -787,17 +793,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing/providers/Microsoft.EventHub/namespaces/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:jonl-testing\",\r\n \"createdAt\": \"2018-12-20T14:57:48.55Z\",\r\n \"updatedAt\": \"2019-01-04T16:43:45.017Z\",\r\n \"serviceBusEndpoint\": \"https://jonl-Testing.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1627\",\r\n \"name\": \"sdk-Namespace-1627\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1627\",\r\n \"createdAt\": \"2019-01-31T23:29:09.06Z\",\r\n \"updatedAt\": \"2019-01-31T23:29:38.477Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1627.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/skulkarneventgridtest\",\r\n \"name\": \"skulkarneventgridtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:skulkarneventgridtest\",\r\n \"createdAt\": \"2017-07-10T20:21:28.01Z\",\r\n \"updatedAt\": \"2017-07-10T20:21:55.28Z\",\r\n \"serviceBusEndpoint\": \"https://skulkarneventgridtest.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/sbconversion-geodr-cbn04\",\r\n \"name\": \"sbconversion-geodr-cbn04\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sbconversion-geodr-cbn04\",\r\n \"createdAt\": \"2018-03-12T22:37:22.427Z\",\r\n \"updatedAt\": \"2018-03-12T22:37:51.813Z\",\r\n \"serviceBusEndpoint\": \"https://sbconversion-geodr-cbn04.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2560\",\r\n \"name\": \"sdk-Namespace-2560\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-2560\",\r\n \"createdAt\": \"2019-01-19T02:02:10.703Z\",\r\n \"updatedAt\": \"2019-01-19T02:02:38.637Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-2560.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/mparktest\",\r\n \"name\": \"mparktest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:mparktest\",\r\n \"createdAt\": \"2019-01-23T18:26:25.363Z\",\r\n \"updatedAt\": \"2019-01-23T18:26:54.797Z\",\r\n \"serviceBusEndpoint\": \"https://mparktest.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5681-ns\",\r\n \"name\": \"eh-dotnet-av-5681-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5681-ns\",\r\n \"createdAt\": \"2019-01-18T17:04:42.227Z\",\r\n \"updatedAt\": \"2019-01-18T17:05:10.113Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5681-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8882\",\r\n \"name\": \"sdk-Namespace-8882\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8882\",\r\n \"createdAt\": \"2019-01-18T21:07:01.573Z\",\r\n \"updatedAt\": \"2019-01-18T22:11:27.98Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8882.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources/providers/Microsoft.EventHub/namespaces/portalTestEHNamespace\",\r\n \"name\": \"portalTestEHNamespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 11,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:portaltestehnamespace\",\r\n \"createdAt\": \"2019-01-15T00:29:41Z\",\r\n \"updatedAt\": \"2019-01-15T00:30:11.137Z\",\r\n \"serviceBusEndpoint\": \"https://portalTestEHNamespace.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1302\",\r\n \"name\": \"sdk-Namespace-1302\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1302\",\r\n \"createdAt\": \"2019-01-19T01:56:34.033Z\",\r\n \"updatedAt\": \"2019-01-19T01:57:06.56Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1302.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice/providers/Microsoft.EventHub/namespaces/TestPPG1718\",\r\n \"name\": \"TestPPG1718\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"runnerName\": \"EventHubAMQPRunner,EventHubLatencyRunner,EventHubRestLatencyRunner,EventHubRESTRunner\",\r\n \"scaleUnit\": \"PROD-BL3-535\",\r\n \"Batch\": \"B1\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:testppg1718\",\r\n \"createdAt\": \"2019-01-18T20:01:55.723Z\",\r\n \"updatedAt\": \"2019-01-25T01:56:58.097Z\",\r\n \"serviceBusEndpoint\": \"https://TestPPG1718.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7968\",\r\n \"name\": \"sdk-Namespace-7968\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-7968\",\r\n \"createdAt\": \"2019-01-22T18:39:34.853Z\",\r\n \"updatedAt\": \"2019-01-22T18:40:05.19Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-7968.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-714\",\r\n \"name\": \"sdk-Namespace-714\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-714\",\r\n \"createdAt\": \"2019-01-19T01:50:56.84Z\",\r\n \"updatedAt\": \"2019-01-19T01:51:29.973Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-714.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9561\",\r\n \"name\": \"sdk-Namespace-9561\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-9561\",\r\n \"createdAt\": \"2019-01-22T18:33:49.517Z\",\r\n \"updatedAt\": \"2019-01-22T18:37:31.193Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-9561.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5570\",\r\n \"name\": \"sdk-Namespace-5570\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-5570\",\r\n \"createdAt\": \"2019-01-22T18:49:39.53Z\",\r\n \"updatedAt\": \"2019-01-22T18:56:56.493Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-5570.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5701-ns\",\r\n \"name\": \"eh-dotnet-av-5701-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5701-ns\",\r\n \"createdAt\": \"2019-01-18T20:32:31.143Z\",\r\n \"updatedAt\": \"2019-01-18T20:32:58.863Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5701-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5821-ns\",\r\n \"name\": \"eh-dotnet-av-5821-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5821-ns\",\r\n \"createdAt\": \"2019-01-25T21:10:18.69Z\",\r\n \"updatedAt\": \"2019-01-25T21:10:43.677Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5821-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2157\",\r\n \"name\": \"sdk-Namespace-2157\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-2157\",\r\n \"createdAt\": \"2019-01-22T18:34:26.237Z\",\r\n \"updatedAt\": \"2019-01-22T18:37:31.067Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-2157.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384\",\r\n \"name\": \"sdk-Namespace-3384\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3384\",\r\n \"createdAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"updatedAt\": \"2019-02-01T00:15:56.81Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3384.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2826\",\r\n \"name\": \"sdk-Namespace-2826\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-2826\",\r\n \"createdAt\": \"2019-01-18T21:06:24.993Z\",\r\n \"updatedAt\": \"2019-01-18T22:11:28.16Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-2826.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5751-ns\",\r\n \"name\": \"eh-dotnet-av-5751-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5751-ns\",\r\n \"createdAt\": \"2019-01-18T23:54:13.25Z\",\r\n \"updatedAt\": \"2019-01-18T23:54:41.58Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5751-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8183\",\r\n \"name\": \"sdk-Namespace-8183\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8183\",\r\n \"createdAt\": \"2019-01-22T18:43:23.657Z\",\r\n \"updatedAt\": \"2019-01-22T18:47:06.697Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8183.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4444\",\r\n \"name\": \"sdk-Namespace-4444\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-4444\",\r\n \"createdAt\": \"2019-01-22T18:50:16.563Z\",\r\n \"updatedAt\": \"2019-01-22T18:56:56.413Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-4444.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8479\",\r\n \"name\": \"sdk-Namespace-8479\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8479\",\r\n \"createdAt\": \"2019-01-19T01:50:37.26Z\",\r\n \"updatedAt\": \"2019-01-19T01:51:11.32Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8479.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5032\",\r\n \"name\": \"sdk-Namespace-5032\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-5032\",\r\n \"createdAt\": \"2019-01-22T18:44:00.5Z\",\r\n \"updatedAt\": \"2019-01-22T18:47:03.533Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-5032.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5731-ns\",\r\n \"name\": \"eh-dotnet-av-5731-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5731-ns\",\r\n \"createdAt\": \"2019-01-18T22:36:33.633Z\",\r\n \"updatedAt\": \"2019-01-18T22:37:01.12Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5731-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8292\",\r\n \"name\": \"sdk-Namespace-8292\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8292\",\r\n \"createdAt\": \"2019-01-19T01:45:42.92Z\",\r\n \"updatedAt\": \"2019-01-19T01:46:11.333Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8292.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest/providers/Microsoft.EventHub/namespaces/ali-test-eh\",\r\n \"name\": \"ali-test-eh\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:ali-test-eh\",\r\n \"createdAt\": \"2019-01-16T00:25:07.527Z\",\r\n \"updatedAt\": \"2019-01-16T00:25:36.607Z\",\r\n \"serviceBusEndpoint\": \"https://ali-test-eh.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/skulkarnvnetga\",\r\n \"name\": \"skulkarnvnetga\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:skulkarnvnetga\",\r\n \"createdAt\": \"2018-11-20T22:01:52.26Z\",\r\n \"updatedAt\": \"2018-11-20T22:02:18.233Z\",\r\n \"serviceBusEndpoint\": \"https://skulkarnvnetga.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9053\",\r\n \"name\": \"sdk-Namespace-9053\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-9053\",\r\n \"createdAt\": \"2019-01-22T18:38:58.087Z\",\r\n \"updatedAt\": \"2019-01-22T18:39:27.663Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-9053.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/sbconversion-geodr-cdm03\",\r\n \"name\": \"sbconversion-geodr-cdm03\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sbconversion-geodr-cdm03\",\r\n \"createdAt\": \"2018-03-12T22:36:27.38Z\",\r\n \"updatedAt\": \"2018-03-12T22:36:52.023Z\",\r\n \"serviceBusEndpoint\": \"https://sbconversion-geodr-cdm03.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope3\",\r\n \"name\": \"ardsouzargmovewesteurope3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope3\",\r\n \"createdAt\": \"2020-02-04T17:52:36.543Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope3.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope2\",\r\n \"name\": \"ardsouzargmovewesteurope2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope2\",\r\n \"createdAt\": \"2020-02-04T17:51:29.303Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/logcompprodby3533\",\r\n \"name\": \"logcompprodby3533\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:logcompprodby3533\",\r\n \"createdAt\": \"2020-05-03T22:36:52.07Z\",\r\n \"updatedAt\": \"2020-05-03T22:37:40.05Z\",\r\n \"serviceBusEndpoint\": \"https://logcompprodby3533.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope5\",\r\n \"name\": \"ardsouzargmovewesteurope5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope5\",\r\n \"createdAt\": \"2020-02-04T17:54:52.51Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope5.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope4\",\r\n \"name\": \"ardsouzargmovewesteurope4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope4\",\r\n \"createdAt\": \"2020-02-04T17:53:44.357Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope4.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope7\",\r\n \"name\": \"ardsouzargmovewesteurope7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope7\",\r\n \"createdAt\": \"2020-02-04T17:57:08.773Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope7.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope6\",\r\n \"name\": \"ardsouzargmovewesteurope6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope6\",\r\n \"createdAt\": \"2020-02-04T17:56:00.547Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope6.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/BalaNPvtLinkTest\",\r\n \"name\": \"BalaNPvtLinkTest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:balanpvtlinktest\",\r\n \"createdAt\": \"2020-05-07T17:04:10.58Z\",\r\n \"updatedAt\": \"2020-05-07T17:05:04.29Z\",\r\n \"serviceBusEndpoint\": \"https://BalaNPvtLinkTest.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestUS/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS\",\r\n \"name\": \"FirewallTestEHNS\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Failed\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns\",\r\n \"createdAt\": \"2020-02-10T22:58:39.517Z\",\r\n \"updatedAt\": \"2020-02-10T23:57:30.203Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sv201905092045\",\r\n \"name\": \"sv201905092045\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sv201905092045\",\r\n \"createdAt\": \"2019-05-10T03:45:59.437Z\",\r\n \"updatedAt\": \"2019-05-10T03:46:30.23Z\",\r\n \"serviceBusEndpoint\": \"https://sv201905092045.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sjprivateendpoint\",\r\n \"name\": \"sjprivateendpoint\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjprivateendpoint\",\r\n \"createdAt\": \"2020-04-10T02:57:38.27Z\",\r\n \"updatedAt\": \"2020-04-10T02:58:31.04Z\",\r\n \"serviceBusEndpoint\": \"https://sjprivateendpoint.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/serkant-testdedicated\",\r\n \"name\": \"serkant-testdedicated\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:serkant-testdedicated\",\r\n \"createdAt\": \"2020-02-22T00:00:00.817Z\",\r\n \"updatedAt\": \"2020-02-22T00:00:48.49Z\",\r\n \"serviceBusEndpoint\": \"https://serkant-testdedicated.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cesar-local-store/providers/Microsoft.EventHub/namespaces/cesar-local-test\",\r\n \"name\": \"cesar-local-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/3ab905bd-5de3-4363-8236-96dd443a454f/resourceGroups/vanquish-eastus-eh-cluster/providers/Microsoft.EventHub/clusters/vanquish-eastus-eh-cluster-test-localstore\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:cesar-local-test\",\r\n \"createdAt\": \"2020-05-04T20:48:30.883Z\",\r\n \"updatedAt\": \"2020-05-04T20:51:18.247Z\",\r\n \"serviceBusEndpoint\": \"https://cesar-local-test.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/enableBYOK1\",\r\n \"name\": \"enableBYOK1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:enablebyok1\",\r\n \"createdAt\": \"2019-08-02T20:04:48.823Z\",\r\n \"updatedAt\": \"2019-08-02T20:05:41.633Z\",\r\n \"serviceBusEndpoint\": \"https://enableBYOK1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouza-test-3-24\",\r\n \"name\": \"ardsouza-test-3-24\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-test-3-24\",\r\n \"createdAt\": \"2020-03-25T00:43:41.953Z\",\r\n \"updatedAt\": \"2020-03-25T00:44:26.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-test-3-24.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS01\",\r\n \"name\": \"FirewallTestEHNS01\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns01\",\r\n \"createdAt\": \"2020-02-10T23:45:31.33Z\",\r\n \"updatedAt\": \"2020-02-10T23:46:22.787Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS01.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjaztest1centralus\",\r\n \"name\": \"sjaztest1centralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 2,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjaztest1centralus\",\r\n \"createdAt\": \"2020-05-01T03:18:33.267Z\",\r\n \"updatedAt\": \"2020-05-01T07:14:36.14Z\",\r\n \"serviceBusEndpoint\": \"https://sjaztest1centralus.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS02\",\r\n \"name\": \"FirewallTestEHNS02\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns02\",\r\n \"createdAt\": \"2020-02-12T03:00:00.42Z\",\r\n \"updatedAt\": \"2020-02-12T03:00:49.62Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS02.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/enableBYOK\",\r\n \"name\": \"enableBYOK\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"1480cdbe-0eb6-44da-bb9c-4007de6a4911\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey2\",\r\n \"keyVaultUri\": \"https://testehbyok-vault1.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:enablebyok\",\r\n \"createdAt\": \"2019-08-01T15:36:37.02Z\",\r\n \"updatedAt\": \"2020-05-04T16:30:10.157Z\",\r\n \"serviceBusEndpoint\": \"https://enableBYOK.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source4\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source4\",\r\n \"createdAt\": \"2020-02-04T17:48:58.03Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source4.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source5\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source5\",\r\n \"createdAt\": \"2020-02-04T17:50:01.78Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source5.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/BYOK-Test-ali\",\r\n \"name\": \"BYOK-Test-ali\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:byok-test-ali\",\r\n \"createdAt\": \"2019-10-14T16:29:22.147Z\",\r\n \"updatedAt\": \"2019-12-02T20:05:35.86Z\",\r\n \"serviceBusEndpoint\": \"https://BYOK-Test-ali.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source6\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source6\",\r\n \"createdAt\": \"2020-02-04T17:51:04.497Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source6.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source7\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source7\",\r\n \"createdAt\": \"2020-02-04T17:52:06.7Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source7.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/clemensvtest/providers/Microsoft.EventHub/namespaces/clemensv6\",\r\n \"name\": \"clemensv6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:clemensv6\",\r\n \"createdAt\": \"2019-01-15T14:38:47.493Z\",\r\n \"updatedAt\": \"2020-03-23T10:15:44.843Z\",\r\n \"serviceBusEndpoint\": \"https://clemensv6.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source2\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source2\",\r\n \"createdAt\": \"2020-02-04T17:46:54.237Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source3\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source3\",\r\n \"createdAt\": \"2020-02-04T17:47:56.23Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source3.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7508/providers/Microsoft.EventHub/namespaces/sdk-NS-1654\",\r\n \"name\": \"sdk-NS-1654\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-1654\",\r\n \"createdAt\": \"2020-05-11T06:44:07.463Z\",\r\n \"updatedAt\": \"2020-05-11T06:44:56.41Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1654.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source8\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source8\",\r\n \"createdAt\": \"2020-02-04T17:53:09.51Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source8.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source9\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source9\",\r\n \"createdAt\": \"2020-02-04T17:54:11.72Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source9.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdkTestingnamespace2\",\r\n \"name\": \"sdkTestingnamespace2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"4a0767d9-5ab1-4edb-953e-ba90a5953cfa\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"sdktestingkey1\",\r\n \"keyVaultUri\": \"https://sdktestingkey.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdktestingnamespace2\",\r\n \"createdAt\": \"2019-08-13T02:40:32.443Z\",\r\n \"updatedAt\": \"2020-03-30T22:29:10.703Z\",\r\n \"serviceBusEndpoint\": \"https://sdkTestingnamespace2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EastUS2/providers/Microsoft.EventHub/namespaces/nsBenchMarktest1\",\r\n \"name\": \"nsBenchMarktest1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/82070742-c572-4a28-b265-9119eb4818bf/resourceGroups/DNAM365A/providers/Microsoft.EventHub/clusters/M365AEventHubClusterProdSecondary\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:nsbenchmarktest1\",\r\n \"createdAt\": \"2019-05-03T20:57:54.45Z\",\r\n \"updatedAt\": \"2019-05-03T20:58:21.633Z\",\r\n \"serviceBusEndpoint\": \"https://nsBenchMarktest1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/arthur\",\r\n \"name\": \"arthur\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:arthur\",\r\n \"createdAt\": \"2019-08-15T17:36:31.993Z\",\r\n \"updatedAt\": \"2019-08-15T17:37:20.383Z\",\r\n \"serviceBusEndpoint\": \"https://arthur.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740\",\r\n \"name\": \"sdk-NS-4740\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4740\",\r\n \"createdAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"updatedAt\": \"2020-05-11T07:05:05.447Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4740.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjehbasic\",\r\n \"name\": \"sjehbasic\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjehbasic\",\r\n \"createdAt\": \"2020-05-01T03:28:21.04Z\",\r\n \"updatedAt\": \"2020-05-01T03:29:11.29Z\",\r\n \"serviceBusEndpoint\": \"https://sjehbasic.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/mmrg4193/providers/Microsoft.EventHub/namespaces/myehkafkadest19690\",\r\n \"name\": \"myehkafkadest19690\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:myehkafkadest19690\",\r\n \"createdAt\": \"2019-05-02T18:13:45.82Z\",\r\n \"updatedAt\": \"2019-05-02T18:14:13.547Z\",\r\n \"serviceBusEndpoint\": \"https://myehkafkadest19690.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/testDataSender\",\r\n \"name\": \"testDataSender\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testdatasender\",\r\n \"createdAt\": \"2019-06-26T06:24:13.92Z\",\r\n \"updatedAt\": \"2019-06-26T06:25:03.01Z\",\r\n \"serviceBusEndpoint\": \"https://testDataSender.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EastAsia/providers/Microsoft.EventHub/namespaces/sj-hk2-507-secondary\",\r\n \"name\": \"sj-hk2-507-secondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-hk2-507-secondary\",\r\n \"createdAt\": \"2020-01-07T22:20:48.123Z\",\r\n \"updatedAt\": \"2020-01-07T22:24:10.75Z\",\r\n \"serviceBusEndpoint\": \"https://sj-hk2-507-secondary.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/mmrg6755/providers/Microsoft.EventHub/namespaces/myehkafkadest2349\",\r\n \"name\": \"myehkafkadest2349\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:myehkafkadest2349\",\r\n \"createdAt\": \"2019-05-10T17:57:20.02Z\",\r\n \"updatedAt\": \"2019-05-10T17:57:49.16Z\",\r\n \"serviceBusEndpoint\": \"https://myehkafkadest2349.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/fps-test-ns\",\r\n \"name\": \"fps-test-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:fps-test-ns\",\r\n \"createdAt\": \"2020-03-12T22:52:50.62Z\",\r\n \"updatedAt\": \"2020-03-13T23:17:24.527Z\",\r\n \"serviceBusEndpoint\": \"https://fps-test-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 12\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jfgRsrcGrp1/providers/Microsoft.EventHub/namespaces/jfgNmSpc1\",\r\n \"name\": \"jfgNmSpc1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:jfgnmspc1\",\r\n \"createdAt\": \"2019-08-06T23:10:44.84Z\",\r\n \"updatedAt\": \"2019-08-06T23:11:33.213Z\",\r\n \"serviceBusEndpoint\": \"https://jfgNmSpc1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/DocsDemoNamespace2\",\r\n \"name\": \"DocsDemoNamespace2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:docsdemonamespace2\",\r\n \"createdAt\": \"2020-03-12T22:51:57.92Z\",\r\n \"updatedAt\": \"2020-03-17T22:07:58.567Z\",\r\n \"serviceBusEndpoint\": \"https://DocsDemoNamespace2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/francoThroughputNamespace\",\r\n \"name\": \"francoThroughputNamespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:francothroughputnamespace\",\r\n \"createdAt\": \"2019-06-27T18:01:26.18Z\",\r\n \"updatedAt\": \"2019-06-27T18:02:13.54Z\",\r\n \"serviceBusEndpoint\": \"https://francoThroughputNamespace.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewestus-1\",\r\n \"name\": \"ardsouzargmovewestus-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewestus-1\",\r\n \"createdAt\": \"2020-02-04T17:42:43.18Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewestus-1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjvnet\",\r\n \"name\": \"sjvnet\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjvnet\",\r\n \"createdAt\": \"2020-05-01T00:58:53.213Z\",\r\n \"updatedAt\": \"2020-05-01T01:15:25.05Z\",\r\n \"serviceBusEndpoint\": \"https://sjvnet.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/capturerg/providers/Microsoft.EventHub/namespaces/testSAS\",\r\n \"name\": \"testSAS\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testsas\",\r\n \"createdAt\": \"2019-08-12T21:57:26.127Z\",\r\n \"updatedAt\": \"2019-08-12T21:58:14.37Z\",\r\n \"serviceBusEndpoint\": \"https://testSAS.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/JustResource/providers/Microsoft.EventHub/namespaces/JustEH\",\r\n \"name\": \"JustEH\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Japan West\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:justeh\",\r\n \"createdAt\": \"2020-04-15T23:21:37.433Z\",\r\n \"updatedAt\": \"2020-04-15T23:22:42.52Z\",\r\n \"serviceBusEndpoint\": \"https://JustEH.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/almohse-byok-secondary\",\r\n \"name\": \"almohse-byok-secondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"041f4239-c2a5-4f70-85af-fc974b941c87\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"ali-key\",\r\n \"keyVaultUri\": \"https://ali-test-byok-keyvault.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:almohse-byok-secondary\",\r\n \"createdAt\": \"2019-09-25T22:29:40.05Z\",\r\n \"updatedAt\": \"2020-03-27T22:46:09.727Z\",\r\n \"serviceBusEndpoint\": \"https://almohse-byok-secondary.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/mmrg6755/providers/Microsoft.EventHub/namespaces/myehkafkasource5061\",\r\n \"name\": \"myehkafkasource5061\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:myehkafkasource5061\",\r\n \"createdAt\": \"2019-05-10T17:56:38.147Z\",\r\n \"updatedAt\": \"2019-05-10T17:57:03.693Z\",\r\n \"serviceBusEndpoint\": \"https://myehkafkasource5061.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source10\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source10\",\r\n \"createdAt\": \"2020-02-04T17:55:13.89Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source10.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope10\",\r\n \"name\": \"ardsouzargmovewesteurope10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope10\",\r\n \"createdAt\": \"2020-02-04T18:00:31.753Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope10.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testehgeodr2/providers/Microsoft.EventHub/namespaces/testehgeodrprimaryns1\",\r\n \"name\": \"testehgeodrprimaryns1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 20,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testehgeodrprimaryns1\",\r\n \"createdAt\": \"2018-02-21T18:02:15.81Z\",\r\n \"updatedAt\": \"2019-01-18T00:20:52.33Z\",\r\n \"serviceBusEndpoint\": \"https://testehgeodrprimaryns1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/privateEndpointsTesting-EH-2\",\r\n \"name\": \"privateEndpointsTesting-EH-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:privateendpointstesting-eh-2\",\r\n \"createdAt\": \"2020-02-28T21:57:07.507Z\",\r\n \"updatedAt\": \"2020-02-28T22:08:05.973Z\",\r\n \"serviceBusEndpoint\": \"https://privateEndpointsTesting-EH-2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestUS/providers/Microsoft.EventHub/namespaces/hmlam-by3-533\",\r\n \"name\": \"hmlam-by3-533\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-by3-533\",\r\n \"createdAt\": \"2020-03-14T03:11:10.53Z\",\r\n \"updatedAt\": \"2020-03-14T03:11:57.557Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-by3-533.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS11\",\r\n \"name\": \"FirewallTestEHNS11\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns11\",\r\n \"createdAt\": \"2020-02-12T16:30:56.167Z\",\r\n \"updatedAt\": \"2020-02-12T16:31:42.52Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS11.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS12\",\r\n \"name\": \"FirewallTestEHNS12\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns12\",\r\n \"createdAt\": \"2020-02-12T16:32:19.673Z\",\r\n \"updatedAt\": \"2020-02-12T16:33:06.957Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS12.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/privateEndpointsTesting\",\r\n \"name\": \"privateEndpointsTesting\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:privateendpointstesting\",\r\n \"createdAt\": \"2020-02-28T02:46:31.04Z\",\r\n \"updatedAt\": \"2020-02-28T02:47:21.783Z\",\r\n \"serviceBusEndpoint\": \"https://privateEndpointsTesting.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sv201905092104\",\r\n \"name\": \"sv201905092104\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sv201905092104\",\r\n \"createdAt\": \"2019-05-10T04:05:11.593Z\",\r\n \"updatedAt\": \"2019-05-10T04:05:42.583Z\",\r\n \"serviceBusEndpoint\": \"https://sv201905092104.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testehgeodr2/providers/Microsoft.EventHub/namespaces/testehgeodrsecondaryns1\",\r\n \"name\": \"testehgeodrsecondaryns1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 20,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testehgeodrsecondaryns1\",\r\n \"createdAt\": \"2018-02-21T18:07:08.807Z\",\r\n \"updatedAt\": \"2019-01-18T00:37:11.63Z\",\r\n \"serviceBusEndpoint\": \"https://testehgeodrsecondaryns1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouzaclustertest/providers/Microsoft.EventHub/namespaces/ardsouza-test-3-24-2\",\r\n \"name\": \"ardsouza-test-3-24-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-test-3-24-2\",\r\n \"createdAt\": \"2020-03-25T00:45:44.757Z\",\r\n \"updatedAt\": \"2020-03-25T00:46:31.027Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-test-3-24-2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EastAsia/providers/Microsoft.EventHub/namespaces/sj-hk2-507\",\r\n \"name\": \"sj-hk2-507\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-hk2-507\",\r\n \"createdAt\": \"2020-01-07T01:15:27.563Z\",\r\n \"updatedAt\": \"2020-01-07T22:24:13.13Z\",\r\n \"serviceBusEndpoint\": \"https://sj-hk2-507.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sv2testpartiton\",\r\n \"name\": \"sv2testpartiton\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sv2testpartiton\",\r\n \"createdAt\": \"2019-05-29T17:47:48.45Z\",\r\n \"updatedAt\": \"2019-05-29T17:48:37.507Z\",\r\n \"serviceBusEndpoint\": \"https://sv2testpartiton.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/walmartdemorg/providers/Microsoft.EventHub/namespaces/example-walmart-demo\",\r\n \"name\": \"example-walmart-demo\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 20,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:example-walmart-demo\",\r\n \"createdAt\": \"2020-01-09T19:22:58.137Z\",\r\n \"updatedAt\": \"2020-01-09T20:07:11.08Z\",\r\n \"serviceBusEndpoint\": \"https://example-walmart-demo.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/walmartdemorg/providers/Microsoft.EventHub/namespaces/walmart-demo2\",\r\n \"name\": \"walmart-demo2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 20,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:walmart-demo2\",\r\n \"createdAt\": \"2020-01-09T20:01:44.603Z\",\r\n \"updatedAt\": \"2020-01-09T20:07:11.153Z\",\r\n \"serviceBusEndpoint\": \"https://walmart-demo2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/SDKTestingBYOK\",\r\n \"name\": \"SDKTestingBYOK\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"5f82f38c-3f7b-404b-a68e-38112e65b995\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdktestingbyok\",\r\n \"createdAt\": \"2019-08-06T01:17:41.877Z\",\r\n \"updatedAt\": \"2020-03-30T02:19:11.14Z\",\r\n \"serviceBusEndpoint\": \"https://SDKTestingBYOK.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope9\",\r\n \"name\": \"ardsouzargmovewesteurope9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope9\",\r\n \"createdAt\": \"2020-02-04T17:59:24.193Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope9.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/mmrg4193/providers/Microsoft.EventHub/namespaces/myehkafkasource28074\",\r\n \"name\": \"myehkafkasource28074\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:myehkafkasource28074\",\r\n \"createdAt\": \"2019-05-02T18:12:18.083Z\",\r\n \"updatedAt\": \"2019-05-02T18:12:49.037Z\",\r\n \"serviceBusEndpoint\": \"https://myehkafkasource28074.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707\",\r\n \"name\": \"sdk-Namespace-6707\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"b837b4cc-2234-4278-aa72-81d9dc054039\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6707\",\r\n \"createdAt\": \"2020-05-08T17:11:05.04Z\",\r\n \"updatedAt\": \"2020-05-08T17:12:14.127Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6707.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope8\",\r\n \"name\": \"ardsouzargmovewesteurope8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope8\",\r\n \"createdAt\": \"2020-02-04T17:58:17.303Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope8.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/key-rotate-test\",\r\n \"name\": \"key-rotate-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"115f5174-cd97-48f1-bdfb-659a3857354d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"byok-demo-key\",\r\n \"keyVaultUri\": \"https://byok-demo-keyvault.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:key-rotate-test\",\r\n \"createdAt\": \"2019-11-01T18:03:19.453Z\",\r\n \"updatedAt\": \"2020-05-03T18:00:11.563Z\",\r\n \"serviceBusEndpoint\": \"https://key-rotate-test.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope1\",\r\n \"name\": \"ardsouzargmovewesteurope1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope1\",\r\n \"createdAt\": \"2020-02-04T17:50:20.743Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDA/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ac653180-7cb3-4296-b329-325f07850126" + "37589539-a66f-4f02-8440-be2fdf3c7724" ], "accept-language": [ "en-US" @@ -805,8 +811,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -820,29 +826,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:16:34 GMT" + "Mon, 11 May 2020 07:05:29 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "dc6d6a27-dcd2-4071-895d-526cc6c0469e_M10CH3_M10CH3" + "dea3bd06-490c-4810-b0c1-b3a7686bb133_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "48" ], "x-ms-correlation-request-id": [ - "98cd05e5-5e87-450c-8f48-cfb5e0bb35cc" + "5b1dac40-753c-4014-8cb7-09734fd47d44" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001635Z:98cd05e5-5e87-450c-8f48-cfb5e0bb35cc" + "WESTUS:20200511T070529Z:5b1dac40-753c-4014-8cb7-09734fd47d44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -851,7 +857,7 @@ "nosniff" ], "Content-Length": [ - "730" + "712" ], "Content-Type": [ "application/json; charset=utf-8" @@ -860,17 +866,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384\",\r\n \"name\": \"sdk-Namespace-3384\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3384\",\r\n \"createdAt\": \"2019-02-01T00:15:25.167Z\",\r\n \"updatedAt\": \"2019-02-01T00:16:33.293Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3384.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740\",\r\n \"name\": \"sdk-NS-4740\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-4740\",\r\n \"createdAt\": \"2020-05-11T07:04:18.313Z\",\r\n \"updatedAt\": \"2020-05-11T07:05:26.377Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-4740.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDA/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0485981a-a930-4233-91a6-0d648ab3bb2b" + "eae5cb4e-e83f-4972-8dd3-7fe8bd5e957b" ], "accept-language": [ "en-US" @@ -878,8 +884,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -887,32 +893,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:16:47 GMT" + "Mon, 11 May 2020 07:05:41 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384/operationresults/sdk-Namespace-3384?api-version=2017-04-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740/operationresults/sdk-NS-4740?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "81949b48-ced0-4c6e-bdcd-036cebcae14d_M6CH3_M6CH3" + "d993e1d3-599f-4a3e-b283-c8472d1f17bc_M1SN1_M1SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "c0c473d9-3a13-4094-833f-bc2491c2a506" + "3d94672b-cbb1-41be-bed7-1ca614eca740" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001648Z:c0c473d9-3a13-4094-833f-bc2491c2a506" + "WESTUS:20200511T070541Z:3d94672b-cbb1-41be-bed7-1ca614eca740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -931,16 +937,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384/operationresults/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740/operationresults/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDAvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNDc0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -948,29 +954,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:17:17 GMT" + "Mon, 11 May 2020 07:06:11 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "f8d00d6b-7754-42d3-8060-fcd6c6491c2e_M8CH3_M8CH3" + "f5ec5287-e55f-44b3-b675-3a48645400e9_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "8eb87c25-6c2e-4f1e-93e5-e66955b714b1" + "cb733fb2-90fe-4547-86ff-8b5e9515610d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001718Z:8eb87c25-6c2e-4f1e-93e5-e66955b714b1" + "WESTUS:20200511T070611Z:cb733fb2-90fe-4547-86ff-8b5e9515610d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -989,16 +995,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3384/operationresults/sdk-Namespace-3384?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTMzODQvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTMzODQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4315/providers/Microsoft.EventHub/namespaces/sdk-NS-4740/operationresults/sdk-NS-4740?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTQ3NDAvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtNDc0MD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1006,29 +1012,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:17:17 GMT" + "Mon, 11 May 2020 07:06:11 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "10dd9b75-580b-416b-8a23-7041ef64e9f0_M8CH3_M8CH3" + "ee79732e-d559-4fe4-b08e-5a198a9e9345_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "9dc69de9-b15e-477e-942b-b8111ffa5abb" + "dc374d1d-5ade-4175-9286-9e6d82aeca3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001718Z:9dc69de9-b15e-477e-942b-b8111ffa5abb" + "WESTUS:20200511T070611Z:dc374d1d-5ade-4175-9286-9e6d82aeca3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1045,14 +1051,78 @@ }, "ResponseBody": "", "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4315?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDMxNT9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a35c0021-e775-42a4-9019-6ce8f34afe51" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 07:06:15 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ0MzE1LUFVU1RSQUxJQUVBU1QiLCJqb2JMb2NhdGlvbiI6ImF1c3RyYWxpYWVhc3QifQ?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "cbcbb033-b576-4f21-9bd9-7a8a00edbe9a" + ], + "x-ms-correlation-request-id": [ + "cbcbb033-b576-4f21-9bd9-7a8a00edbe9a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T070615Z:cbcbb033-b576-4f21-9bd9-7a8a00edbe9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 } ], "Names": { "NamespaceCreateGetUpdateDelete": [ - "sdk-Namespace-3384" + "Default-EventHub-4315", + "sdk-NS-4740" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json index 8374b267087a..772e05138bcb 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceCreateGetUpdateDeleteAuthorizationRules.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f2e1652-7d13-4493-b52f-20196dd110c3" + "7d0632a5-471a-496e-b55d-ee67f41941b5" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,22 +24,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:17:55 GMT" + "Mon, 11 May 2020 07:06:15 GMT" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-request-id": [ - "34938f27-c0d1-458d-8523-d6ea4f19fba7" + "9250829e-956f-44b0-be5c-762ebef1dcf6" ], "x-ms-correlation-request-id": [ - "34938f27-c0d1-458d-8523-d6ea4f19fba7" + "9250829e-956f-44b0-be5c-762ebef1dcf6" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001756Z:34938f27-c0d1-458d-8523-d6ea4f19fba7" + "WESTUS:20200511T070616Z:9250829e-956f-44b0-be5c-762ebef1dcf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "2435" + "3375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-4967?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Nz9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8a6e232e-f574-4d65-a8a8-98fb0698f98e" + "1f4a8c51-7a4f-473e-acc5-7b7b3a3bd6e8" ], "accept-language": [ "en-US" @@ -75,8 +75,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" ] }, "ResponseHeaders": { @@ -84,22 +90,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:17:55 GMT" + "Mon, 11 May 2020 07:06:18 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "1fe56f76-d57e-4840-a558-e5711ff6b86d" + "f6a5322a-1202-42f7-b94b-bbc389e0478f" ], "x-ms-correlation-request-id": [ - "1fe56f76-d57e-4840-a558-e5711ff6b86d" + "f6a5322a-1202-42f7-b94b-bbc389e0478f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001756Z:1fe56f76-d57e-4840-a558-e5711ff6b86d" + "WESTUS:20200511T070618Z:f6a5322a-1202-42f7-b94b-bbc389e0478f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +114,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "202" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967\",\r\n \"name\": \"Default-EventHub-4967\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub/CheckNameAvailability?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-Namespace-8689\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-9319\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c1cd72cf-9b57-4bfb-8fb4-a69f984d123b" + "57d4fd51-4ea0-427d-8a03-8c0dc3650ae3" ], "accept-language": [ "en-US" @@ -135,14 +141,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "29" ] }, "ResponseHeaders": { @@ -150,29 +156,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:17:56 GMT" + "Mon, 11 May 2020 07:06:18 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "052ce47b-f77f-409f-87f5-13a735f8d474_M1CH3_M1CH3" + "1688c1fc-8e0c-4f71-92c9-e60c8b3dcda6_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1199" ], "x-ms-correlation-request-id": [ - "ead38198-88fc-47bb-aa76-33c7ed1099ca" + "aced1d9e-388c-4dec-a70c-6f7dd883bc91" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001756Z:ead38198-88fc-47bb-aa76-33c7ed1099ca" + "WESTUS:20200511T070619Z:aced1d9e-388c-4dec-a70c-6f7dd883bc91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -194,13 +200,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31f24221-8de7-4540-a495-15c7e69ef4eb" + "0953051a-d68d-452f-b0a5-0ab5fe04a75c" ], "accept-language": [ "en-US" @@ -208,8 +214,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -223,29 +229,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:18:00 GMT" + "Mon, 11 May 2020 07:06:25 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a218715c-9f61-4648-8916-75da4bf6ea3b_M1CH3_M1CH3" + "cf060b68-2acb-4e33-99af-c74bb5fce899_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "b8e5815e-0ac3-4005-9912-23c917876dc9" + "3c3da893-74de-4092-8dfd-305efef692ec" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001800Z:b8e5815e-0ac3-4005-9912-23c917876dc9" + "WESTUS:20200511T070626Z:3c3da893-74de-4092-8dfd-305efef692ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -254,7 +260,7 @@ "nosniff" ], "Content-Length": [ - "729" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -263,20 +269,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689\",\r\n \"name\": \"sdk-Namespace-8689\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8689\",\r\n \"createdAt\": \"2019-02-01T00:17:58.967Z\",\r\n \"updatedAt\": \"2019-02-01T00:17:58.967Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8689.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319\",\r\n \"name\": \"sdk-NS-9319\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9319\",\r\n \"createdAt\": \"2020-05-11T07:06:25.14Z\",\r\n \"updatedAt\": \"2020-05-11T07:06:25.14Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9319.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -284,29 +290,90 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:18:29 GMT" + "Mon, 11 May 2020 07:06:56 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "305d12bc-62c3-44c2-b409-c5a2c01a3582_M11CH3_M11CH3" + "89ef9ae9-2fa9-4765-824c-83852fbc0701_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "71f8f331-09b8-467c-94a9-63d9b215e523" + "450f6542-2463-4842-85fb-66d8cde15609" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T070656Z:450f6542-2463-4842-85fb-66d8cde15609" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "709" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319\",\r\n \"name\": \"sdk-NS-9319\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9319\",\r\n \"createdAt\": \"2020-05-11T07:06:25.14Z\",\r\n \"updatedAt\": \"2020-05-11T07:06:25.14Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9319.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 07:07:26 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "e6eff2c7-82e1-4320-88e9-6c5acc69696b_M4SN1_M4SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "7bec93c9-4b14-4307-b652-dd93f38926bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001830Z:71f8f331-09b8-467c-94a9-63d9b215e523" + "WESTUS:20200511T070726Z:7bec93c9-4b14-4307-b652-dd93f38926bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,7 +382,7 @@ "nosniff" ], "Content-Length": [ - "727" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -324,17 +391,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689\",\r\n \"name\": \"sdk-Namespace-8689\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8689\",\r\n \"createdAt\": \"2019-02-01T00:17:58.967Z\",\r\n \"updatedAt\": \"2019-02-01T00:18:27.153Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8689.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319\",\r\n \"name\": \"sdk-NS-9319\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9319\",\r\n \"createdAt\": \"2020-05-11T07:06:25.14Z\",\r\n \"updatedAt\": \"2020-05-11T07:07:16.113Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9319.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "077d5dc7-2ee8-40b9-95e8-ce2dca59c844" + "df843642-c14c-49e2-88a4-4c51892d8b4c" ], "accept-language": [ "en-US" @@ -342,8 +409,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -351,29 +418,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:18:34 GMT" + "Mon, 11 May 2020 07:07:31 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "213e43d1-b2e9-4874-9b33-c5c9cf643b82_M6CH3_M6CH3" + "0edb33d9-e694-4d2f-835b-4dde99f15f0b_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "20beebbe-3c4b-4ca3-9301-b47e22d8c96e" + "6f6e2679-c043-4455-a848-cb5357b79339" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001835Z:20beebbe-3c4b-4ca3-9301-b47e22d8c96e" + "WESTUS:20200511T070731Z:6f6e2679-c043-4455-a848-cb5357b79339" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -382,7 +449,7 @@ "nosniff" ], "Content-Length": [ - "727" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -391,17 +458,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689\",\r\n \"name\": \"sdk-Namespace-8689\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8689\",\r\n \"createdAt\": \"2019-02-01T00:17:58.967Z\",\r\n \"updatedAt\": \"2019-02-01T00:18:27.153Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8689.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319\",\r\n \"name\": \"sdk-NS-9319\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9319\",\r\n \"createdAt\": \"2020-05-11T07:06:25.14Z\",\r\n \"updatedAt\": \"2020-05-11T07:07:16.113Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9319.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "881f2731-02ef-42ad-9264-f4143eff25e4" + "bd210e2b-2f84-45e1-88bf-7f4d466c097e" ], "accept-language": [ "en-US" @@ -409,8 +476,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -418,29 +485,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:18:34 GMT" + "Mon, 11 May 2020 07:07:31 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "bb7529ff-45d5-4b08-aa19-dcc6e89fb6f2_M6CH3_M6CH3" + "87859821-e197-489c-baed-dcd3e4562efd_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "475837ad-a01e-443b-b475-fd38c5699e56" + "a5acad04-4466-4e07-90c8-fff1355912d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001835Z:475837ad-a01e-443b-b475-fd38c5699e56" + "WESTUS:20200511T070732Z:a5acad04-4466-4e07-90c8-fff1355912d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,7 +516,7 @@ "nosniff" ], "Content-Length": [ - "727" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -458,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689\",\r\n \"name\": \"sdk-Namespace-8689\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8689\",\r\n \"createdAt\": \"2019-02-01T00:17:58.967Z\",\r\n \"updatedAt\": \"2019-02-01T00:18:27.153Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8689.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319\",\r\n \"name\": \"sdk-NS-9319\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9319\",\r\n \"createdAt\": \"2020-05-11T07:06:25.14Z\",\r\n \"updatedAt\": \"2020-05-11T07:07:16.113Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9319.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNzE5Mj9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTYwMT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ec8df3a8-745d-4616-bdc6-0756a14e2de4" + "cfcaf79a-0b45-4b7e-8145-6bc9f3d7c2b9" ], "accept-language": [ "en-US" @@ -476,8 +543,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -491,29 +558,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:18:54 GMT" + "Mon, 11 May 2020 07:07:38 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c1bbf307-7c92-4860-87fa-94f0b4f01b8f_M11CH3_M11CH3" + "d0a31028-e5f8-4704-8d16-933586127b51_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "7d9a7026-420e-4104-a523-6f829db87fb4" + "cfb3bcb4-a637-480c-963b-5aa40219ab67" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001854Z:7d9a7026-420e-4104-a523-6f829db87fb4" + "WESTUS:20200511T070739Z:cfb3bcb4-a637-480c-963b-5aa40219ab67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +589,7 @@ "nosniff" ], "Content-Length": [ - "361" + "343" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,17 +598,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192\",\r\n \"name\": \"sdk-Authrules-7192\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601\",\r\n \"name\": \"sdk-Authrules-9601\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNzE5Mj9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTYwMT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5ac6c611-2338-415f-b727-5be1c76648ce" + "262f6ab3-9bb1-400b-9535-e907f4279ab6" ], "accept-language": [ "en-US" @@ -549,8 +616,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -564,29 +631,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:19:14 GMT" + "Mon, 11 May 2020 07:07:46 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "79d87f5e-f6f1-4e3d-8fbb-6bc8924f7b1a_M1CH3_M1CH3" + "2de8bc25-c414-42d7-9246-aa89a37ced63_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-correlation-request-id": [ - "e9736a84-60ef-4670-a9d1-8d4b4650ed89" + "37bc756a-3fe0-4367-ae73-0de149fcaa71" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001914Z:e9736a84-60ef-4670-a9d1-8d4b4650ed89" + "WESTUS:20200511T070747Z:37bc756a-3fe0-4367-ae73-0de149fcaa71" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -595,7 +662,7 @@ "nosniff" ], "Content-Length": [ - "354" + "336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -604,17 +671,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192\",\r\n \"name\": \"sdk-Authrules-7192\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601\",\r\n \"name\": \"sdk-Authrules-9601\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/RootManageSharedAccessKey?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzL1Jvb3RNYW5hZ2VTaGFyZWRBY2Nlc3NLZXk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/RootManageSharedAccessKey?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzL1Jvb3RNYW5hZ2VTaGFyZWRBY2Nlc3NLZXk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2be84e24-b0d9-4320-aec8-5e05eb661af0" + "90e55aff-c9ca-4f57-8ab4-3f3632fda979" ], "accept-language": [ "en-US" @@ -622,8 +689,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -631,29 +698,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:18:54 GMT" + "Mon, 11 May 2020 07:07:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "2619762d-4303-415c-81ad-ce455a6117d3_M11CH3_M11CH3" + "045aadb4-d1f2-419d-b7ef-2817c02445f6_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "4d5095b8-4062-463c-a50c-94cb5117c922" + "7aa5864c-aa6b-4e82-b7c1-434bc5634087" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001854Z:4d5095b8-4062-463c-a50c-94cb5117c922" + "WESTUS:20200511T070739Z:7aa5864c-aa6b-4e82-b7c1-434bc5634087" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -662,7 +729,7 @@ "nosniff" ], "Content-Length": [ - "384" + "366" ], "Content-Type": [ "application/json; charset=utf-8" @@ -671,17 +738,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/RootManageSharedAccessKey\",\r\n \"name\": \"RootManageSharedAccessKey\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/RootManageSharedAccessKey\",\r\n \"name\": \"RootManageSharedAccessKey\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNzE5Mj9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTYwMT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49b1970d-ea71-493a-af7f-3b27d39fdbf1" + "2be9fd0f-b1bd-47a1-8f34-16cae39c6500" ], "accept-language": [ "en-US" @@ -689,8 +756,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -698,29 +765,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:18:55 GMT" + "Mon, 11 May 2020 07:07:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "aa7d03a1-a053-4f1f-ad44-84aada7447b8_M11CH3_M11CH3" + "7171480d-6171-4025-94f6-97c8dc2b5c8d_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "e413791c-2448-4c05-95d9-731f6da29ec7" + "2fa9c29d-ab4f-4fe3-ab81-a1e7a8dcf9a5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001855Z:e413791c-2448-4c05-95d9-731f6da29ec7" + "WESTUS:20200511T070740Z:2fa9c29d-ab4f-4fe3-ab81-a1e7a8dcf9a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -729,7 +796,7 @@ "nosniff" ], "Content-Length": [ - "361" + "343" ], "Content-Type": [ "application/json; charset=utf-8" @@ -738,17 +805,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192\",\r\n \"name\": \"sdk-Authrules-7192\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601\",\r\n \"name\": \"sdk-Authrules-9601\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNzE5Mj9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTYwMT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f735114-537b-4ecd-b7b5-d876ddda7868" + "a3bbb103-b905-43a9-af97-0498abb0397d" ], "accept-language": [ "en-US" @@ -756,8 +823,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -765,29 +832,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:19:14 GMT" + "Mon, 11 May 2020 07:07:47 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "46023c5c-6f15-4979-aebf-07ffeb801d27_M1CH3_M1CH3" + "b002b80d-39de-4378-ae29-dcd6bf12544b_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "db61912f-5ddc-4964-93f5-e27855ab3c99" + "c100b7e1-378d-4e68-86fa-f82d4afb8bb3" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001915Z:db61912f-5ddc-4964-93f5-e27855ab3c99" + "WESTUS:20200511T070747Z:c100b7e1-378d-4e68-86fa-f82d4afb8bb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -796,7 +863,7 @@ "nosniff" ], "Content-Length": [ - "354" + "336" ], "Content-Type": [ "application/json; charset=utf-8" @@ -805,17 +872,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192\",\r\n \"name\": \"sdk-Authrules-7192\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601\",\r\n \"name\": \"sdk-Authrules-9601\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\"\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzP2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cad26977-36fd-45ee-b976-0fca2ff92437" + "5f3c7893-c1d3-4c9e-8f28-a9e3f026fb38" ], "accept-language": [ "en-US" @@ -823,8 +890,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -832,29 +899,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:18:57 GMT" + "Mon, 11 May 2020 07:07:40 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a38a83f3-b5a4-4d4b-a96b-6ee744d12be5_M1CH3_M1CH3" + "1c59c76f-5939-4218-9922-67c5c7cec247_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "6f21a20c-c1ab-45ee-9ddc-efb30f330b1c" + "a36f9310-abab-44b2-8d87-599596368377" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001857Z:6f21a20c-c1ab-45ee-9ddc-efb30f330b1c" + "WESTUS:20200511T070740Z:a36f9310-abab-44b2-8d87-599596368377" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -863,7 +930,7 @@ "nosniff" ], "Content-Length": [ - "758" + "722" ], "Content-Type": [ "application/json; charset=utf-8" @@ -872,17 +939,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/RootManageSharedAccessKey\",\r\n \"name\": \"RootManageSharedAccessKey\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192\",\r\n \"name\": \"sdk-Authrules-7192\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/RootManageSharedAccessKey\",\r\n \"name\": \"RootManageSharedAccessKey\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Manage\",\r\n \"Send\"\r\n ]\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601\",\r\n \"name\": \"sdk-Authrules-9601\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/AuthorizationRules\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"rights\": [\r\n \"Listen\",\r\n \"Send\"\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192/listKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNzE5Mi9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601/listKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTYwMS9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "144ee0ce-493d-4e8e-a6b8-8b6eb92d2743" + "6c5152c9-2c6b-4496-8152-f7d2d053004b" ], "accept-language": [ "en-US" @@ -890,8 +957,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -899,29 +966,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:19:16 GMT" + "Mon, 11 May 2020 07:07:48 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "39f0e79f-f6d7-403e-af6b-dcb4633ac797_M5CH3_M5CH3" + "ffb4e580-819d-4cce-9e3a-7e6e92843ecd_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1198" ], "x-ms-correlation-request-id": [ - "f4f26db5-02b4-49ed-985c-9d2b32e6cc61" + "518195f4-2d2e-45fe-b67e-9bf5d20d3c5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001917Z:f4f26db5-02b4-49ed-985c-9d2b32e6cc61" + "WESTUS:20200511T070748Z:518195f4-2d2e-45fe-b67e-9bf5d20d3c5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -930,7 +997,7 @@ "nosniff" ], "Content-Length": [ - "526" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -939,17 +1006,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-8689.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7192;SharedAccessKey=a868kj41YOwNko3Dvj4Fsf6H4fXqQUiDnFmpRyu/JbY=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-8689.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7192;SharedAccessKey=1Q4QB9LUF6PrfGHBxiaQ7/tEKuHOYKukKhX3ld0IWlI=\",\r\n \"primaryKey\": \"a868kj41YOwNko3Dvj4Fsf6H4fXqQUiDnFmpRyu/JbY=\",\r\n \"secondaryKey\": \"1Q4QB9LUF6PrfGHBxiaQ7/tEKuHOYKukKhX3ld0IWlI=\",\r\n \"keyName\": \"sdk-Authrules-7192\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-9319.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9601;SharedAccessKey=DLia/uZDqD8BTx44aNpEQgY1jzFSxeg4EvrX7W22Jr0=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-9319.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9601;SharedAccessKey=c3kOxtPRCJx+CsfKSiOPOHKncNUzbHu1YazkJi5famg=\",\r\n \"primaryKey\": \"DLia/uZDqD8BTx44aNpEQgY1jzFSxeg4EvrX7W22Jr0=\",\r\n \"secondaryKey\": \"c3kOxtPRCJx+CsfKSiOPOHKncNUzbHu1YazkJi5famg=\",\r\n \"keyName\": \"sdk-Authrules-9601\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192/regenerateKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNzE5Mi9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601/regenerateKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTYwMS9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"PrimaryKey\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "74664d71-127d-4873-8061-22ab158e866f" + "54e4fc04-ca50-4dbb-9707-0026783bb616" ], "accept-language": [ "en-US" @@ -957,8 +1024,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -972,29 +1039,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:19:33 GMT" + "Mon, 11 May 2020 07:07:54 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d8ccd6e2-992f-402d-afdf-6edf3a386466_M5CH3_M5CH3" + "154c9aa5-5c88-4745-8cc0-484aec7de9ed_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1197" ], "x-ms-correlation-request-id": [ - "1d5c3773-3baa-4967-8333-170f38c35ad9" + "0e99831f-b69c-4ca2-bfa6-5169f41872ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001933Z:1d5c3773-3baa-4967-8333-170f38c35ad9" + "WESTUS:20200511T070754Z:0e99831f-b69c-4ca2-bfa6-5169f41872ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1003,7 +1070,7 @@ "nosniff" ], "Content-Length": [ - "526" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1012,17 +1079,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-8689.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7192;SharedAccessKey=nGibzvk19T1gPENsxNNyVxs8uY+wOPomSswCBdKaLso=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-8689.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7192;SharedAccessKey=1Q4QB9LUF6PrfGHBxiaQ7/tEKuHOYKukKhX3ld0IWlI=\",\r\n \"primaryKey\": \"nGibzvk19T1gPENsxNNyVxs8uY+wOPomSswCBdKaLso=\",\r\n \"secondaryKey\": \"1Q4QB9LUF6PrfGHBxiaQ7/tEKuHOYKukKhX3ld0IWlI=\",\r\n \"keyName\": \"sdk-Authrules-7192\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-9319.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9601;SharedAccessKey=lxZmdNjxGTSGYvFBgNEGgR5Ck0FaHXnrW8dUjrgeElE=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-9319.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9601;SharedAccessKey=c3kOxtPRCJx+CsfKSiOPOHKncNUzbHu1YazkJi5famg=\",\r\n \"primaryKey\": \"lxZmdNjxGTSGYvFBgNEGgR5Ck0FaHXnrW8dUjrgeElE=\",\r\n \"secondaryKey\": \"c3kOxtPRCJx+CsfKSiOPOHKncNUzbHu1YazkJi5famg=\",\r\n \"keyName\": \"sdk-Authrules-9601\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192/regenerateKeys?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNzE5Mi9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601/regenerateKeys?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTYwMS9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "POST", "RequestBody": "{\r\n \"keyType\": \"SecondaryKey\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3c0df234-f46d-402d-9604-c7a69479595e" + "7b5e3805-6cc0-49a8-b014-5236b757cb68" ], "accept-language": [ "en-US" @@ -1030,8 +1097,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1045,29 +1112,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:19:49 GMT" + "Mon, 11 May 2020 07:08:00 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ee0bf6c3-fed2-4d65-86ff-b99aae8645b5_M5CH3_M5CH3" + "fbc1d3e1-57c3-403d-a508-33f81ba2c2de_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "8743cc7c-da6a-462c-9f71-05a8dbe1246e" + "2163a0a8-c1f7-48f5-a086-da9286743bc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001950Z:8743cc7c-da6a-462c-9f71-05a8dbe1246e" + "WESTUS:20200511T070800Z:2163a0a8-c1f7-48f5-a086-da9286743bc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1076,7 +1143,7 @@ "nosniff" ], "Content-Length": [ - "526" + "512" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1085,17 +1152,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-namespace-8689.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7192;SharedAccessKey=nGibzvk19T1gPENsxNNyVxs8uY+wOPomSswCBdKaLso=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-namespace-8689.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-7192;SharedAccessKey=Uws7u7qZQuCIsCCVyKfGIc5LEnYccQ4VfR3neb5xqZg=\",\r\n \"primaryKey\": \"nGibzvk19T1gPENsxNNyVxs8uY+wOPomSswCBdKaLso=\",\r\n \"secondaryKey\": \"Uws7u7qZQuCIsCCVyKfGIc5LEnYccQ4VfR3neb5xqZg=\",\r\n \"keyName\": \"sdk-Authrules-7192\"\r\n}", + "ResponseBody": "{\r\n \"primaryConnectionString\": \"Endpoint=sb://sdk-ns-9319.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9601;SharedAccessKey=lxZmdNjxGTSGYvFBgNEGgR5Ck0FaHXnrW8dUjrgeElE=\",\r\n \"secondaryConnectionString\": \"Endpoint=sb://sdk-ns-9319.servicebus.windows.net/;SharedAccessKeyName=sdk-Authrules-9601;SharedAccessKey=33KXGsRgvesPmSb6CmDuCMjFvguKHCLsyvfmg82V9O0=\",\r\n \"primaryKey\": \"lxZmdNjxGTSGYvFBgNEGgR5Ck0FaHXnrW8dUjrgeElE=\",\r\n \"secondaryKey\": \"33KXGsRgvesPmSb6CmDuCMjFvguKHCLsyvfmg82V9O0=\",\r\n \"keyName\": \"sdk-Authrules-9601\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/AuthorizationRules/sdk-Authrules-7192?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvQXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtNzE5Mj9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/authorizationRules/sdk-Authrules-9601?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvYXV0aG9yaXphdGlvblJ1bGVzL3Nkay1BdXRocnVsZXMtOTYwMT9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03e5b594-8069-4d73-ac68-8486d1d68f76" + "7bf14a99-38b1-43e0-a616-75dc42635b5f" ], "accept-language": [ "en-US" @@ -1103,8 +1170,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1112,29 +1179,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:20:06 GMT" + "Mon, 11 May 2020 07:08:06 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "75eaf95c-cb14-4742-9645-3e77e94b4808_M9CH3_M9CH3" + "f7debbef-8259-404e-b1c1-18443f9eac59_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "32367f0f-e3bc-4feb-a948-d5cbf74c59b1" + "dd6e45a7-3c21-4983-ad59-45ec40ea9dbb" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002007Z:32367f0f-e3bc-4feb-a948-d5cbf74c59b1" + "WESTUS:20200511T070807Z:dd6e45a7-3c21-4983-ad59-45ec40ea9dbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1153,13 +1220,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTk/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ba1f4e7-16a1-4413-8545-94f8703bac61" + "b493d1b4-e348-42a4-9873-765484198984" ], "accept-language": [ "en-US" @@ -1167,8 +1234,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1176,32 +1243,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:20:14 GMT" + "Mon, 11 May 2020 07:08:12 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/operationresults/sdk-Namespace-8689?api-version=2017-04-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/operationresults/sdk-NS-9319?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "052a0363-c630-4e61-a75f-b5741f0738f4_M1CH3_M1CH3" + "d479ef9d-86c8-497d-8051-102ec6c069a5_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], "x-ms-correlation-request-id": [ - "e7a75035-dbaf-4a7b-a38e-e0a818f24adb" + "2d393204-0e14-4401-83ac-a220bb22fa00" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002014Z:e7a75035-dbaf-4a7b-a38e-e0a818f24adb" + "WESTUS:20200511T070813Z:2d393204-0e14-4401-83ac-a220bb22fa00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1220,16 +1287,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/operationresults/sdk-Namespace-8689?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTg2ODk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/operationresults/sdk-NS-9319?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtOTMxOT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1237,29 +1304,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:20:44 GMT" + "Mon, 11 May 2020 07:08:42 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "b80531bf-b402-47d1-a243-06fac71516f3_M3CH3_M3CH3" + "2bd07595-4e45-44c1-8aaf-a585ab1f9db9_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "3a842b7c-c7c3-4f72-b0c7-0954277ac3fe" + "253519cb-48a0-437f-a4ba-0876996a5448" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002044Z:3a842b7c-c7c3-4f72-b0c7-0954277ac3fe" + "WESTUS:20200511T070843Z:253519cb-48a0-437f-a4ba-0876996a5448" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,16 +1345,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8689/operationresults/sdk-Namespace-8689?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTg2ODkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTg2ODk/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-4967/providers/Microsoft.EventHub/namespaces/sdk-NS-9319/operationresults/sdk-NS-9319?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItNDk2Ny9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTkzMTkvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtOTMxOT9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -1295,29 +1362,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:20:44 GMT" + "Mon, 11 May 2020 07:08:42 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "eba95d17-f2b5-4537-bfb5-081bfd7d1005_M3CH3_M3CH3" + "8da0df5b-46be-4510-974a-b85430485310_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "76ed5b2a-bf8c-4b73-b575-a91af02d5c1c" + "1f796f06-5f73-4052-b0c3-3c3ad3b5a04a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T002045Z:76ed5b2a-bf8c-4b73-b575-a91af02d5c1c" + "WESTUS:20200511T070843Z:1f796f06-5f73-4052-b0c3-3c3ad3b5a04a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1338,13 +1405,14 @@ ], "Names": { "NamespaceCreateGetUpdateDeleteAuthorizationRules": [ - "sdk-Namespace-8689", - "sdk-Authrules-7192" + "Default-EventHub-4967", + "sdk-NS-9319", + "sdk-Authrules-9601" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d", - "CreatePrimaryKey": "kKjlr7oXq4r/8R1R/gLhkWt52tQ3Z7GcLUV+AzFQKVo=", - "UpdatePrimaryKey": "xcikn4poJUPGHHaZDw+22zhhO9+lqfFblS72sdpxbOM=" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e", + "CreatePrimaryKey": "31RwS/rUKMtthPeLKK/OoV3RyJA1hYKF3AMq4U60984=", + "UpdatePrimaryKey": "AHzsVbfwsRgK/tMZMKfgRJ3rePRI/F0Hw04XdfTUvBU=" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceKafkaCreateGetUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceKafkaCreateGetUpdateDelete.json index 58fde7289f16..8a0d995bd099 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceKafkaCreateGetUpdateDelete.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NamespaceKafkaCreateGetUpdateDelete.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8208?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c9bf20ca-de82-4c14-b56b-c999f1839c04" + "363b8137-4b05-401d-959a-548fbbaede54" ], "accept-language": [ "en-US" @@ -15,8 +15,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" ] }, "ResponseHeaders": { @@ -24,22 +30,22 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:12:27 GMT" + "Mon, 11 May 2020 06:56:40 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "284250c6-9879-4ac0-aa2b-ffcd114a885d" + "c5b82310-6208-4d21-af11-846a14107b98" ], "x-ms-correlation-request-id": [ - "284250c6-9879-4ac0-aa2b-ffcd114a885d" + "c5b82310-6208-4d21-af11-846a14107b98" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001228Z:284250c6-9879-4ac0-aa2b-ffcd114a885d" + "WESTUS:20200511T065641Z:c5b82310-6208-4d21-af11-846a14107b98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +54,7 @@ "nosniff" ], "Content-Length": [ - "84560" + "195" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,8 +63,8 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3681-rg\",\r\n \"name\": \"sb-dotnet-av-3681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208\",\r\n \"name\": \"Default-EventHub-8208\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { "RequestUri": "/providers/Microsoft.EventHub/operations?api-version=2017-04-01", @@ -67,7 +73,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "767669e2-2ce1-4506-a19a-416ae5a2ab64" + "93a7d362-9186-4634-afe3-345eb3cfb16a" ], "accept-language": [ "en-US" @@ -75,8 +81,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -84,29 +90,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:12:27 GMT" + "Mon, 11 May 2020 06:56:41 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d178d4bb-ca36-4f8e-9741-fc2cb322f187_M9CH3_M9CH3" + "9d9c9a06-d376-41e7-b0f7-0e839817c228_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-tenant-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "a1b9b328-ae24-4b70-bbf2-fa2f20f92d46" + "b9ebd0c6-c7c1-418d-9da7-bb9398519e4c" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001228Z:a1b9b328-ae24-4b70-bbf2-fa2f20f92d46" + "WESTUS:20200511T065641Z:b9ebd0c6-c7c1-418d-9da7-bb9398519e4c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -115,7 +121,7 @@ "nosniff" ], "Content-Length": [ - "37257" + "43814" ], "Content-Type": [ "application/json; charset=utf-8" @@ -124,17 +130,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNamespaceAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription. This API is deprecated please use CheckNameAvailabiltiy instead.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Registers the EventHub Resource Provider\",\r\n \"description\": \"Registers the subscription for the EventHub resource provider and enables the creation of EventHub resources\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/unregister/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Registers the EventHub Resource Provider\",\r\n \"description\": \"Registers the EventHub Resource Provider\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/locations/deleteVirtualNetworkOrSubnets/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Deletes the VNet rules in EventHub Resource Provider for the specified VNet\",\r\n \"description\": \"Deletes the VNet rules in EventHub Resource Provider for the specified VNet\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and Capacity of the Namespace are the properties which can be updated.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the status of Namespace operation\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/regenerateKeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Resource Regeneratekeys\",\r\n \"description\": \"Regenerate the Primary or Secondary key to the Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingPlan/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Messaging Plan (Deprecated)\",\r\n \"description\": \"Gets the Messaging Plan for a namespace. This API is deprecated. Properties exposed via the MessagingPlan resource are moved to the (parent) Namespace resource in later API versions.. This operation is not supported on API version 2017-04-01.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingPlan/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create or Update Messaging Plan (Deprecated)\",\r\n \"description\": \"Updates the Messaging Plan for a namespace. This API is deprecated. Properties exposed via the MessagingPlan resource are moved to the (parent) Namespace resource in later API versions.. This operation is not supported on API version 2017-04-01.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Updates Namespace Authorization Rule (Deprecated)\",\r\n \"description\": \"Updates Namespace Authorization Rule. This API is depricated. Please use a PUT call to update the Namespace Authorization Rule instead.. This operation is not supported on API version 2017-04-01.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Create or Update EventHub\",\r\n \"description\": \"Create or Update EventHub properties.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Get EventHub\",\r\n \"description\": \"Get list of EventHub Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Delete EventHub\",\r\n \"description\": \"Operation to delete EventHub Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \" Get EventHub Authorization Rules\",\r\n \"description\": \" Get the list of EventHub Authorization Rules\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Create or Update EventHub Authorization Rule\",\r\n \"description\": \"Create EventHub Authorization Rules and Update its properties. The Authorization Rules Access Rights can be updated.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Delete EventHub Authorization Rules\",\r\n \"description\": \"Operation to delete EventHub Authorization Rules\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"List EventHub keys\",\r\n \"description\": \"Get the Connection String to EventHub\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/regenerateKeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Resource Regeneratekeys\",\r\n \"description\": \"Regenerate the Primary or Secondary key to the Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Update EventHub Authorization Rules (Deprecated)\",\r\n \"description\": \"Operation to update EventHub. This operation is not supported on API version 2017-04-01. Authorization Rules. Please use a PUT call to update Authorization Rule.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Create or Update ConsumerGroup\",\r\n \"description\": \"Create or Update ConsumerGroup properties.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Get ConsumerGroup\",\r\n \"description\": \"Get list of ConsumerGroup Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Delete ConsumerGroup\",\r\n \"description\": \"Operation to delete ConsumerGroup Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/sku/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Sku\",\r\n \"operation\": \"Get Sku\",\r\n \"description\": \"Get list of Sku Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/sku/regions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SkuRegions\",\r\n \"operation\": \"Get SkuRegions\",\r\n \"description\": \"Get list of SkuRegions Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Operations\",\r\n \"operation\": \"Get Operations\",\r\n \"description\": \"Get Operations\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace metrics\",\r\n \"operation\": \"Get Namespace metrics\",\r\n \"description\": \"Get list of Namespace metrics Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SuccessfulRequests\",\r\n \"displayName\": \"Successful Requests\",\r\n \"displayDescription\": \"Successful Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Success\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ServerErrors\",\r\n \"displayName\": \"Server Errors.\",\r\n \"displayDescription\": \"Server Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"InternalServerError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"UserErrors\",\r\n \"displayName\": \"User Errors.\",\r\n \"displayDescription\": \"User Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ClientError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"QuotaExceededErrors\",\r\n \"displayName\": \"Quota Exceeded Errors.\",\r\n \"displayDescription\": \"Quota Exceeded Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"QuotaExceeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ThrottledRequests\",\r\n \"displayName\": \"Throttled Requests.\",\r\n \"displayDescription\": \"Throttled Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ServerBusy\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingRequests\",\r\n \"displayName\": \"Incoming Requests\",\r\n \"displayDescription\": \"Incoming Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingMessages\",\r\n \"displayName\": \"Incoming Messages\",\r\n \"displayDescription\": \"Incoming Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingMessages\",\r\n \"displayName\": \"Outgoing Messages\",\r\n \"displayDescription\": \"Outgoing Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingBytes\",\r\n \"displayName\": \"Incoming Bytes.\",\r\n \"displayDescription\": \"Incoming Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingBytes\",\r\n \"displayName\": \"Outgoing Bytes.\",\r\n \"displayDescription\": \"Outgoing Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActiveConnections\",\r\n \"displayName\": \"ActiveConnections\",\r\n \"displayDescription\": \"Total Active Connections for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsOpened\",\r\n \"displayName\": \"Connections Opened.\",\r\n \"displayDescription\": \"Connections Opened for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsClosed\",\r\n \"displayName\": \"Connections Closed.\",\r\n \"displayDescription\": \"Connections Closed for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CaptureBacklog\",\r\n \"displayName\": \"Capture Backlog.\",\r\n \"displayDescription\": \"Capture Backlog for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchiveBacklog\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedMessages\",\r\n \"displayName\": \"Captured Messages.\",\r\n \"displayDescription\": \"Captured Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedBytes\",\r\n \"displayName\": \"Captured Bytes.\",\r\n \"displayDescription\": \"Captured Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"Size\",\r\n \"displayName\": \"Size\",\r\n \"displayDescription\": \"Size of an EventHub in Bytes.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"EntitySize\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\"\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Min\",\r\n \"Max\"\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INREQS\",\r\n \"displayName\": \"Incoming Requests (Deprecated)\",\r\n \"displayDescription\": \"Total incoming send requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"SUCCREQ\",\r\n \"displayName\": \"Successful Requests (Deprecated)\",\r\n \"displayDescription\": \"Total successful requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"FAILREQ\",\r\n \"displayName\": \"Failed Requests (Deprecated)\",\r\n \"displayDescription\": \"Total failed requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"SVRBSY\",\r\n \"displayName\": \"Server Busy Errors (Deprecated)\",\r\n \"displayDescription\": \"Total server busy errors for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INTERR\",\r\n \"displayName\": \"Internal Server Errors (Deprecated)\",\r\n \"displayDescription\": \"Total internal server errors for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"MISCERR\",\r\n \"displayName\": \"Other Errors (Deprecated)\",\r\n \"displayDescription\": \"Total failed requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INMSGS\",\r\n \"displayName\": \"Incoming Messages (Deprecated) (Deprecated)\",\r\n \"displayDescription\": \"Total incoming messages for a namespace. This metric is deprecated. Please use Incoming Messages metric instead (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINMSGS\",\r\n \"displayName\": \"Incoming Messages (Deprecated)\",\r\n \"displayDescription\": \"Total incoming messages for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OUTMSGS\",\r\n \"displayName\": \"Outgoing Messages (Deprecated) (Deprecated)\",\r\n \"displayDescription\": \"Total outgoing messages for a namespace. This metric is deprecated. Please use Outgoing Messages metric instead (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTMSGS\",\r\n \"displayName\": \"Outgoing Messages (Deprecated)\",\r\n \"displayDescription\": \"Total outgoing messages for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINMBS\",\r\n \"displayName\": \"Incoming bytes (Deprecated) (Deprecated)\",\r\n \"displayDescription\": \"Event Hub incoming message throughput for a namespace. This metric is deprecated. Please use Incoming bytes metric instead (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINBYTES\",\r\n \"displayName\": \"Incoming bytes (Deprecated)\",\r\n \"displayDescription\": \"Event Hub incoming message throughput for a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTMBS\",\r\n \"displayName\": \"Outgoing bytes (Deprecated) (Deprecated)\",\r\n \"displayDescription\": \"Event Hub outgoing message throughput for a namespace. This metric is deprecated. Please use Outgoing bytes metric instead (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTBYTES\",\r\n \"displayName\": \"Outgoing bytes (Deprecated)\",\r\n \"displayDescription\": \"Event Hub outgoing message throughput for a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHABL\",\r\n \"displayName\": \"Archive backlog messages (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archive messages in backlog for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHAMSGS\",\r\n \"displayName\": \"Archive messages (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archived messages in a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHAMBS\",\r\n \"displayName\": \"Archive message throughput (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archived message throughput in a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster metrics\",\r\n \"operation\": \"Get Cluster metrics\",\r\n \"description\": \"Get list of Cluster metrics Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SuccessfulRequests\",\r\n \"displayName\": \"Successful Requests (Preview)\",\r\n \"displayDescription\": \"Successful Requests for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Success\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ServerErrors\",\r\n \"displayName\": \"Server Errors. (Preview)\",\r\n \"displayDescription\": \"Server Errors for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"InternalServerError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"UserErrors\",\r\n \"displayName\": \"User Errors. (Preview)\",\r\n \"displayDescription\": \"User Errors for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ClientError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"QuotaExceededErrors\",\r\n \"displayName\": \"Quota Exceeded Errors. (Preview)\",\r\n \"displayDescription\": \"Quota Exceeded Errors for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"QuotaExceeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ThrottledRequests\",\r\n \"displayName\": \"Throttled Requests. (Preview)\",\r\n \"displayDescription\": \"Throttled Requests for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ServerBusy\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingRequests\",\r\n \"displayName\": \"Incoming Requests (Preview)\",\r\n \"displayDescription\": \"Incoming Requests for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingMessages\",\r\n \"displayName\": \"Incoming Messages (Preview)\",\r\n \"displayDescription\": \"Incoming Messages for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingMessages\",\r\n \"displayName\": \"Outgoing Messages (Preview)\",\r\n \"displayDescription\": \"Outgoing Messages for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingBytes\",\r\n \"displayName\": \"Incoming Bytes. (Preview)\",\r\n \"displayDescription\": \"Incoming Bytes for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingBytes\",\r\n \"displayName\": \"Outgoing Bytes. (Preview)\",\r\n \"displayDescription\": \"Outgoing Bytes for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActiveConnections\",\r\n \"displayName\": \"ActiveConnections (Preview)\",\r\n \"displayDescription\": \"Total Active Connections for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsOpened\",\r\n \"displayName\": \"Connections Opened. (Preview)\",\r\n \"displayDescription\": \"Connections Opened for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsClosed\",\r\n \"displayName\": \"Connections Closed. (Preview)\",\r\n \"displayDescription\": \"Connections Closed for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CaptureBacklog\",\r\n \"displayName\": \"Capture Backlog. (Preview)\",\r\n \"displayDescription\": \"Capture Backlog for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchiveBacklog\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedMessages\",\r\n \"displayName\": \"Captured Messages. (Preview)\",\r\n \"displayDescription\": \"Captured Messages for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedMessages\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedBytes\",\r\n \"displayName\": \"Captured Bytes. (Preview)\",\r\n \"displayDescription\": \"Captured Bytes for Microsoft.EventHub. (Preview)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CPU\",\r\n \"displayName\": \"CPU (Preview)\",\r\n \"displayDescription\": \"CPU utilization for the Event Hub Cluster as a percentage\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"Processor\\\\% Processor Time\",\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"PerformanceCountersV2\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"AvailableMemory\",\r\n \"displayName\": \"Available Memory (Preview)\",\r\n \"displayDescription\": \"Available memory for the Event Hub Cluster in bytes\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"Memory\\\\Available MBytes\",\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"PerformanceCountersV2\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace diagnostic settings\",\r\n \"operation\": \"Get Namespace diagnostic settings\",\r\n \"description\": \"Get list of Namespace diagnostic settings Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace diagnostic settings\",\r\n \"operation\": \"Create or Update Namespace diagnostic settings\",\r\n \"description\": \"Get list of Namespace diagnostic settings Resource Descriptions\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace logs\",\r\n \"operation\": \"Get Namespace logs\",\r\n \"description\": \"Get list of Namespace logs Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"ArchiveLogs\",\r\n \"displayName\": \"Archive Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"OperationalLogs\",\r\n \"displayName\": \"Operational Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"AutoScaleLogs\",\r\n \"displayName\": \"Auto Scale Logs\",\r\n \"blobDuration\": \"PT10M\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterrecoveryconfigs/checkNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get alias availability.\",\r\n \"description\": \"Checks availability of namespace alias under given subscription.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Create or Update Disaster Recovery configuration.\",\r\n \"description\": \"Creates or Updates the Disaster Recovery configuration associated with the namespace.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Get Disaster Recovery configuration\",\r\n \"description\": \"Gets the Disaster Recovery configuration associated with the namespace.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Delete Disaster Recovery configuration\",\r\n \"description\": \"Deletes the Disaster Recovery configuration associated with the namespace. This operation can only be invoked via the primary namespace.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/breakPairing/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Break Pairing\",\r\n \"description\": \"Disables Disaster Recovery and stops replicating changes from primary to secondary namespaces.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/failover/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Failover\",\r\n \"description\": \"Invokes a GEO DR failover and reconfigures the namespace alias to point to the secondary namespace.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Disaster Recovery Primary Namespace's Authorization Rules\",\r\n \"description\": \"Get Disaster Recovery Primary Namespace's Authorization Rules\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Gets the authorization rules keys for the Disaster Recovery primary namespace\",\r\n \"description\": \"Gets the authorization rules keys for the Disaster Recovery primary namespace\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/removeAcsNamepsace/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Remove ACS namespace\",\r\n \"operation\": \"Remove ACS namespace\",\r\n \"description\": \"Remove ACS namespace\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Get IP Filter Resource\",\r\n \"description\": \"Get IP Filter Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Create IP Filter Resource\",\r\n \"description\": \"Create IP Filter Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Delete IP Filter Resource\",\r\n \"description\": \"Delete IP Filter Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Gets VNET Rule Resource\",\r\n \"description\": \"Gets VNET Rule Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Create VNET Rule Resource\",\r\n \"description\": \"Create VNET Rule Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Delete VNET Rule Resource\",\r\n \"description\": \"Delete VNET Rule Resource\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Get Cluster Resource\",\r\n \"description\": \"Gets the Cluster Resource Description\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Get Cluster Resource\",\r\n \"description\": \"Gets the Cluster Resource Description\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNamespaceAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription. This API is deprecated please use CheckNameAvailabiltiy instead.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/checkNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get namespace availability.\",\r\n \"description\": \"Checks availability of namespace under given subscription.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Registers the EventHub Resource Provider\",\r\n \"description\": \"Registers the subscription for the EventHub resource provider and enables the creation of EventHub resources\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/unregister/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Registers the EventHub Resource Provider\",\r\n \"description\": \"Registers the EventHub Resource Provider\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/locations/deleteVirtualNetworkOrSubnets/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub Resource Provider\",\r\n \"operation\": \"Deletes the VNet rules in EventHub Resource Provider for the specified VNet\",\r\n \"description\": \"Deletes the VNet rules in EventHub Resource Provider for the specified VNet\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create Or Update Namespace \",\r\n \"description\": \"Create a Namespace Resource and Update its properties. Tags and Capacity of the Namespace are the properties which can be updated.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the list of Namespace Resource Description\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Namespace Resource\",\r\n \"description\": \"Get the status of Namespace operation\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Delete Namespace\",\r\n \"description\": \"Delete Namespace Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Authorization Rules\",\r\n \"description\": \"Get the list of Namespaces Authorization Rules description.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Create or Update Namespace Authorization Rules\",\r\n \"description\": \"Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Delete Namespace Authorization Rule\",\r\n \"description\": \"Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. \"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Namespace Listkeys\",\r\n \"description\": \"Get the Connection String to the Namespace\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/regenerateKeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Resource Regeneratekeys\",\r\n \"description\": \"Regenerate the Primary or Secondary key to the Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingPlan/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Get Messaging Plan (Deprecated)\",\r\n \"description\": \"Gets the Messaging Plan for a namespace. This API is deprecated. Properties exposed via the MessagingPlan resource are moved to the (parent) Namespace resource in later API versions.. This operation is not supported on API version 2017-04-01.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messagingPlan/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace\",\r\n \"operation\": \"Create or Update Messaging Plan (Deprecated)\",\r\n \"description\": \"Updates the Messaging Plan for a namespace. This API is deprecated. Properties exposed via the MessagingPlan resource are moved to the (parent) Namespace resource in later API versions.. This operation is not supported on API version 2017-04-01.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/authorizationRules/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Updates Namespace Authorization Rule (Deprecated)\",\r\n \"description\": \"Updates Namespace Authorization Rule. This API is depricated. Please use a PUT call to update the Namespace Authorization Rule instead.. This operation is not supported on API version 2017-04-01.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Create or Update EventHub\",\r\n \"description\": \"Create or Update EventHub properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Get EventHub\",\r\n \"description\": \"Get list of EventHub Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub\",\r\n \"operation\": \"Delete EventHub\",\r\n \"description\": \"Operation to delete EventHub Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \" Get EventHub Authorization Rules\",\r\n \"description\": \" Get the list of EventHub Authorization Rules\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Create or Update EventHub Authorization Rule\",\r\n \"description\": \"Create EventHub Authorization Rules and Update its properties. The Authorization Rules Access Rights can be updated.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Delete EventHub Authorization Rules\",\r\n \"description\": \"Operation to delete EventHub Authorization Rules\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"List EventHub keys\",\r\n \"description\": \"Get the Connection String to EventHub\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/regenerateKeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Resource Regeneratekeys\",\r\n \"description\": \"Regenerate the Primary or Secondary key to the Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventhubs/authorizationRules/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"EventHub AuthorizationRules\",\r\n \"operation\": \"Update EventHub Authorization Rules (Deprecated)\",\r\n \"description\": \"Operation to update EventHub. This operation is not supported on API version 2017-04-01. Authorization Rules. Please use a PUT call to update Authorization Rule.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Create or Update ConsumerGroup\",\r\n \"description\": \"Create or Update ConsumerGroup properties.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Get ConsumerGroup\",\r\n \"description\": \"Get list of ConsumerGroup Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"ConsumerGroup\",\r\n \"operation\": \"Delete ConsumerGroup\",\r\n \"description\": \"Operation to delete ConsumerGroup Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/sku/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Sku\",\r\n \"operation\": \"Get Sku\",\r\n \"description\": \"Get list of Sku Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/sku/regions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"SkuRegions\",\r\n \"operation\": \"Get SkuRegions\",\r\n \"description\": \"Get list of SkuRegions Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Operations\",\r\n \"operation\": \"Get Operations\",\r\n \"description\": \"Get Operations\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace metrics\",\r\n \"operation\": \"Get Namespace metrics\",\r\n \"description\": \"Get list of Namespace metrics Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SuccessfulRequests\",\r\n \"displayName\": \"Successful Requests\",\r\n \"displayDescription\": \"Successful Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Success\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ServerErrors\",\r\n \"displayName\": \"Server Errors.\",\r\n \"displayDescription\": \"Server Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"InternalServerError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"UserErrors\",\r\n \"displayName\": \"User Errors.\",\r\n \"displayDescription\": \"User Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ClientError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"QuotaExceededErrors\",\r\n \"displayName\": \"Quota Exceeded Errors.\",\r\n \"displayDescription\": \"Quota Exceeded Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"QuotaExceeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ThrottledRequests\",\r\n \"displayName\": \"Throttled Requests.\",\r\n \"displayDescription\": \"Throttled Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n },\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ServerBusy\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingRequests\",\r\n \"displayName\": \"Incoming Requests\",\r\n \"displayDescription\": \"Incoming Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingMessages\",\r\n \"displayName\": \"Incoming Messages\",\r\n \"displayDescription\": \"Incoming Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingMessages\",\r\n \"displayName\": \"Outgoing Messages\",\r\n \"displayDescription\": \"Outgoing Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingBytes\",\r\n \"displayName\": \"Incoming Bytes.\",\r\n \"displayDescription\": \"Incoming Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingBytes\",\r\n \"displayName\": \"Outgoing Bytes.\",\r\n \"displayDescription\": \"Outgoing Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActiveConnections\",\r\n \"displayName\": \"ActiveConnections\",\r\n \"displayDescription\": \"Total Active Connections for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsOpened\",\r\n \"displayName\": \"Connections Opened.\",\r\n \"displayDescription\": \"Connections Opened for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsClosed\",\r\n \"displayName\": \"Connections Closed.\",\r\n \"displayDescription\": \"Connections Closed for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CaptureBacklog\",\r\n \"displayName\": \"Capture Backlog.\",\r\n \"displayDescription\": \"Capture Backlog for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchiveBacklog\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedMessages\",\r\n \"displayName\": \"Captured Messages.\",\r\n \"displayDescription\": \"Captured Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedBytes\",\r\n \"displayName\": \"Captured Bytes.\",\r\n \"displayDescription\": \"Captured Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedBytes\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"Size\",\r\n \"displayName\": \"Size\",\r\n \"displayDescription\": \"Size of an EventHub in Bytes.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"EntitySize\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"EntityName\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Min\",\r\n \"Max\"\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INREQS\",\r\n \"displayName\": \"Incoming Requests (Deprecated)\",\r\n \"displayDescription\": \"Total incoming send requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"SUCCREQ\",\r\n \"displayName\": \"Successful Requests (Deprecated)\",\r\n \"displayDescription\": \"Total successful requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"FAILREQ\",\r\n \"displayName\": \"Failed Requests (Deprecated)\",\r\n \"displayDescription\": \"Total failed requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"SVRBSY\",\r\n \"displayName\": \"Server Busy Errors (Deprecated)\",\r\n \"displayDescription\": \"Total server busy errors for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INTERR\",\r\n \"displayName\": \"Internal Server Errors (Deprecated)\",\r\n \"displayDescription\": \"Total internal server errors for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"MISCERR\",\r\n \"displayName\": \"Other Errors (Deprecated)\",\r\n \"displayDescription\": \"Total failed requests for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"INMSGS\",\r\n \"displayName\": \"Incoming Messages (obsolete) (Deprecated)\",\r\n \"displayDescription\": \"Total incoming messages for a namespace. This metric is deprecated. Please use Incoming Messages metric instead (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINMSGS\",\r\n \"displayName\": \"Incoming Messages (Deprecated)\",\r\n \"displayDescription\": \"Total incoming messages for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OUTMSGS\",\r\n \"displayName\": \"Outgoing Messages (obsolete) (Deprecated)\",\r\n \"displayDescription\": \"Total outgoing messages for a namespace. This metric is deprecated. Please use Outgoing Messages metric instead (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTMSGS\",\r\n \"displayName\": \"Outgoing Messages (Deprecated)\",\r\n \"displayDescription\": \"Total outgoing messages for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINMBS\",\r\n \"displayName\": \"Incoming bytes (obsolete) (Deprecated)\",\r\n \"displayDescription\": \"Event Hub incoming message throughput for a namespace. This metric is deprecated. Please use Incoming bytes metric instead (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHINBYTES\",\r\n \"displayName\": \"Incoming bytes (Deprecated)\",\r\n \"displayDescription\": \"Event Hub incoming message throughput for a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTMBS\",\r\n \"displayName\": \"Outgoing bytes (obsolete) (Deprecated)\",\r\n \"displayDescription\": \"Event Hub outgoing message throughput for a namespace. This metric is deprecated. Please use Outgoing bytes metric instead (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHOUTBYTES\",\r\n \"displayName\": \"Outgoing bytes (Deprecated)\",\r\n \"displayDescription\": \"Event Hub outgoing message throughput for a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHABL\",\r\n \"displayName\": \"Archive backlog messages (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archive messages in backlog for a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHAMSGS\",\r\n \"displayName\": \"Archive messages (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archived messages in a namespace (Deprecated)\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"EHAMBS\",\r\n \"displayName\": \"Archive message throughput (Deprecated)\",\r\n \"displayDescription\": \"Event Hub archived message throughput in a namespace (Deprecated)\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster metrics\",\r\n \"operation\": \"Get Cluster metrics\",\r\n \"description\": \"Get list of Cluster metrics Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SuccessfulRequests\",\r\n \"displayName\": \"Successful Requests\",\r\n \"displayDescription\": \"Successful Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"Success\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ServerErrors\",\r\n \"displayName\": \"Server Errors.\",\r\n \"displayDescription\": \"Server Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"InternalServerError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"UserErrors\",\r\n \"displayName\": \"User Errors.\",\r\n \"displayDescription\": \"User Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ClientError\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"QuotaExceededErrors\",\r\n \"displayName\": \"Quota Exceeded Errors.\",\r\n \"displayDescription\": \"Quota Exceeded Errors for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"QuotaExceeded\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ThrottledRequests\",\r\n \"displayName\": \"Throttled Requests.\",\r\n \"displayDescription\": \"Throttled Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"OperationResult\",\r\n \"isHidden\": true,\r\n \"defaultDimensionValues\": [\r\n {\r\n \"value\": \"ServerBusy\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingRequests\",\r\n \"displayName\": \"Incoming Requests\",\r\n \"displayDescription\": \"Incoming Requests for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingRequests\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingMessages\",\r\n \"displayName\": \"Incoming Messages\",\r\n \"displayDescription\": \"Incoming Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingMessages\",\r\n \"displayName\": \"Outgoing Messages\",\r\n \"displayDescription\": \"Outgoing Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingMessages\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"IncomingBytes\",\r\n \"displayName\": \"Incoming Bytes.\",\r\n \"displayDescription\": \"Incoming Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"IncomingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"OutgoingBytes\",\r\n \"displayName\": \"Outgoing Bytes.\",\r\n \"displayDescription\": \"Outgoing Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"OutgoingBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActiveConnections\",\r\n \"displayName\": \"ActiveConnections\",\r\n \"displayDescription\": \"Total Active Connections for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"NamespaceActiveConnections\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsOpened\",\r\n \"displayName\": \"Connections Opened.\",\r\n \"displayDescription\": \"Connections Opened for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionOpen\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ConnectionsClosed\",\r\n \"displayName\": \"Connections Closed.\",\r\n \"displayDescription\": \"Connections Closed for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"ConnectionClose\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CaptureBacklog\",\r\n \"displayName\": \"Capture Backlog.\",\r\n \"displayDescription\": \"Capture Backlog for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchiveBacklog\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedMessages\",\r\n \"displayName\": \"Captured Messages.\",\r\n \"displayDescription\": \"Captured Messages for Microsoft.EventHub.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedMessages\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CapturedBytes\",\r\n \"displayName\": \"Captured Bytes.\",\r\n \"displayDescription\": \"Captured Bytes for Microsoft.EventHub.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"internalMetricName\": \"ArchivedBytes\",\r\n \"isDimensionRequired\": false,\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"CPU\",\r\n \"displayName\": \"CPU\",\r\n \"displayDescription\": \"CPU utilization for the Event Hub Cluster as a percentage\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"Processor\\\\% Processor Time\",\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"PerformanceCountersV2\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"AvailableMemory\",\r\n \"displayName\": \"Available Memory\",\r\n \"displayDescription\": \"Available memory for the Event Hub Cluster as a percentage of total memory.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Maximum\",\r\n \"internalMetricName\": \"NodeMemoryUtilization\",\r\n \"resourceIdDimensionNameOverride\": \"ScaleUnit\",\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"Size\",\r\n \"displayName\": \"Size of an EventHub in Bytes.\",\r\n \"displayDescription\": \"Size of an EventHub in Bytes.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"internalMetricName\": \"EntitySize\",\r\n \"isDimensionRequired\": false,\r\n \"sourceMdmAccount\": \"servicebus\",\r\n \"sourceMdmNamespace\": \"OperationQoSMetrics\",\r\n \"lockAggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"P30D\"\r\n }\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Role\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ],\r\n \"supportedAggregationTypes\": [\r\n \"Average\",\r\n \"Min\",\r\n \"Max\"\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace diagnostic settings\",\r\n \"operation\": \"Get Namespace diagnostic settings\",\r\n \"description\": \"Get list of Namespace diagnostic settings Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace diagnostic settings\",\r\n \"operation\": \"Create or Update Namespace diagnostic settings\",\r\n \"description\": \"Get list of Namespace diagnostic settings Resource Descriptions\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Namespace logs\",\r\n \"operation\": \"Get Namespace logs\",\r\n \"description\": \"Get list of Namespace logs Resource Descriptions\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"ArchiveLogs\",\r\n \"displayName\": \"Archive Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"OperationalLogs\",\r\n \"displayName\": \"Operational Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"AutoScaleLogs\",\r\n \"displayName\": \"Auto Scale Logs\",\r\n \"blobDuration\": \"PT10M\"\r\n },\r\n {\r\n \"name\": \"KafkaCoordinatorLogs\",\r\n \"displayName\": \"Kafka Coordinator Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"KafkaUserErrorLogs\",\r\n \"displayName\": \"Kafka User Error Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"EventHubVNetConnectionEvent\",\r\n \"displayName\": \"VNet/IP Filtering Connection Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n },\r\n {\r\n \"name\": \"CustomerManagedKeyUserLogs\",\r\n \"displayName\": \"Customer Managed Key Logs\",\r\n \"blobDuration\": \"PT5M\"\r\n }\r\n ]\r\n }\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterrecoveryconfigs/checkNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get alias availability.\",\r\n \"description\": \"Checks availability of namespace alias under given subscription.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Create or Update Disaster Recovery configuration.\",\r\n \"description\": \"Creates or Updates the Disaster Recovery configuration associated with the namespace.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Get Disaster Recovery configuration\",\r\n \"description\": \"Gets the Disaster Recovery configuration associated with the namespace.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Delete Disaster Recovery configuration\",\r\n \"description\": \"Deletes the Disaster Recovery configuration associated with the namespace. This operation can only be invoked via the primary namespace.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/breakPairing/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Break Pairing\",\r\n \"description\": \"Disables Disaster Recovery and stops replicating changes from primary to secondary namespaces.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/failover/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"DisasterRecoveryConfigurations\",\r\n \"operation\": \"Failover\",\r\n \"description\": \"Invokes a GEO DR failover and reconfigures the namespace alias to point to the secondary namespace.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/authorizationRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Get Disaster Recovery Primary Namespace's Authorization Rules\",\r\n \"description\": \"Get Disaster Recovery Primary Namespace's Authorization Rules\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/disasterRecoveryConfigs/authorizationRules/listkeys/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"AuthorizationRules\",\r\n \"operation\": \"Gets the authorization rules keys for the Disaster Recovery primary namespace\",\r\n \"description\": \"Gets the authorization rules keys for the Disaster Recovery primary namespace\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messages/send/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Messages\",\r\n \"operation\": \"Send messages\",\r\n \"description\": \"Send messages\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/messages/receive/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Messages\",\r\n \"operation\": \"Receive messages\",\r\n \"description\": \"Receive messages\"\r\n },\r\n \"isDataAction\": true\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/removeAcsNamepsace/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Remove ACS namespace\",\r\n \"operation\": \"Remove ACS namespace\",\r\n \"description\": \"Remove ACS namespace\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Get IP Filter Resource\",\r\n \"description\": \"Get IP Filter Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Create IP Filter Resource\",\r\n \"description\": \"Create IP Filter Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/ipFilterRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"IPFilter\",\r\n \"operation\": \"Delete IP Filter Resource\",\r\n \"description\": \"Delete IP Filter Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Gets VNET Rule Resource\",\r\n \"description\": \"Gets VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Create VNET Rule Resource\",\r\n \"description\": \"Create VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/virtualNetworkRules/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Virtual Network Rule\",\r\n \"operation\": \"Delete VNET Rule Resource\",\r\n \"description\": \"Delete VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkrulesets/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Gets NetworkRuleSet Resource\",\r\n \"description\": \"Gets NetworkRuleSet Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkrulesets/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Create VNET Rule Resource\",\r\n \"description\": \"Create VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkrulesets/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Delete VNET Rule Resource\",\r\n \"description\": \"Delete VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkruleset/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Gets NetworkRuleSet Resource\",\r\n \"description\": \"Gets NetworkRuleSet Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkruleset/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Create VNET Rule Resource\",\r\n \"description\": \"Create VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/networkruleset/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Network Rule Set\",\r\n \"operation\": \"Delete VNET Rule Resource\",\r\n \"description\": \"Delete VNET Rule Resource\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Get Cluster Resource\",\r\n \"description\": \"Gets the Cluster Resource Description\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Write on Cluster Resource\",\r\n \"description\": \"Creates or modifies an existing Cluster resource.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Cluster\",\r\n \"operation\": \"Delete Cluster Resource\",\r\n \"description\": \"Deletes an existing Cluster resource.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/availableClusterRegions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"List available clusters read operation\",\r\n \"description\": \"Read operation to list available pre-provisioned clusters by Azure region.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/namespaces/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"List namespaces within a cluster read operation\",\r\n \"description\": \"List namespace ARM IDs for namespaces within a cluster.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/clusters/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Non Resource Operation\",\r\n \"operation\": \"Get Cluster Resource\",\r\n \"description\": \"Get the status of an asynchronous cluster operation.\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/validate/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection Proxy\",\r\n \"operation\": \"Validate Private Endpoint Connection Proxy\",\r\n \"description\": \"Validate Private Endpoint Connection Proxy\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection Proxy\",\r\n \"operation\": \"Get Private Endpoint Connection Proxy\",\r\n \"description\": \"Get Private Endpoint Connection Proxy\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection Proxy\",\r\n \"operation\": \"Create Private Endpoint Connection Proxy\",\r\n \"description\": \"Create Private Endpoint Connection Proxy\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.EventHub/namespaces/privateEndpointConnectionProxies/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Azure EventHub\",\r\n \"resource\": \"Private Endpoint Connection Proxy\",\r\n \"operation\": \"Delete Private Endpoint Connection Proxy\",\r\n \"description\": \"Delete Private Endpoint Connection Proxy\"\r\n },\r\n \"isDataAction\": false\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub/CheckNameAvailability?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvQ2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/checkNameAvailability?api-version=2017-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvY2hlY2tOYW1lQXZhaWxhYmlsaXR5P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"sdk-Namespace-3026\"\r\n}", + "RequestBody": "{\r\n \"name\": \"sdk-NS-8966\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "74dd4faa-f32f-4c88-9513-b0af85bc7c50" + "80e5e1fb-0cd4-479b-b151-ae2fd454b790" ], "accept-language": [ "en-US" @@ -142,14 +148,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "36" + "29" ] }, "ResponseHeaders": { @@ -157,29 +163,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:12:28 GMT" + "Mon, 11 May 2020 06:56:41 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "31eafb41-cc30-4e5c-90f1-62279d9b4ddd_M9CH3_M9CH3" + "f57a6156-45b7-45a5-ba20-42f26f5b52f8_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "93ea5a67-8d80-40ba-b559-0b926214143a" + "8a298fe4-a0c2-4681-a9fd-8f241723cbe4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001228Z:93ea5a67-8d80-40ba-b559-0b926214143a" + "WESTUS:20200511T065642Z:8a298fe4-a0c2-4681-a9fd-8f241723cbe4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,13 +207,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS0zMDI2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true\r\n },\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "352fc2c0-a53b-4ea5-9420-ece3b44f3358" + "7f7a7a81-5098-4c28-90a1-af5f40242932" ], "accept-language": [ "en-US" @@ -215,8 +221,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -230,29 +236,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:12:29 GMT" + "Mon, 11 May 2020 06:56:43 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "29c632d3-0f4a-40ba-aaae-4c2a4b6fb3e4_M9CH3_M9CH3" + "027dc9cd-98f0-439e-bac3-61b334ed27e6_M5SN1_M5SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "631f4c9a-ebf7-465a-a19d-c53c803c5ce0" + "208d76f1-68e2-4062-962b-1e2619370662" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001229Z:631f4c9a-ebf7-465a-a19d-c53c803c5ce0" + "WESTUS:20200511T065643Z:208d76f1-68e2-4062-962b-1e2619370662" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -261,7 +267,7 @@ "nosniff" ], "Content-Length": [ - "696" + "704" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,20 +276,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026\",\r\n \"name\": \"sdk-Namespace-3026\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3026\",\r\n \"createdAt\": \"2019-02-01T00:12:29.24Z\",\r\n \"updatedAt\": \"2019-02-01T00:12:29.24Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3026.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966\",\r\n \"name\": \"sdk-NS-8966\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8966\",\r\n \"createdAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"updatedAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8966.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS0zMDI2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -291,29 +297,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:12:59 GMT" + "Mon, 11 May 2020 06:57:13 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "42e9bf98-7c1f-483c-8921-0a97ac7b84ff_M5CH3_M5CH3" + "ae9ffb2b-8d12-47db-8d20-1ac22103e0ce_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "9ff779e6-0a1a-4976-a4a7-0e7acb820db6" + "6895b95c-8026-4783-bf33-ba2bb2ab8ae5" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001300Z:9ff779e6-0a1a-4976-a4a7-0e7acb820db6" + "WESTUS:20200511T065714Z:6895b95c-8026-4783-bf33-ba2bb2ab8ae5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -322,7 +328,7 @@ "nosniff" ], "Content-Length": [ - "694" + "704" ], "Content-Type": [ "application/json; charset=utf-8" @@ -331,17 +337,78 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026\",\r\n \"name\": \"sdk-Namespace-3026\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3026\",\r\n \"createdAt\": \"2019-02-01T00:12:29.24Z\",\r\n \"updatedAt\": \"2019-02-01T00:12:59.45Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3026.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966\",\r\n \"name\": \"sdk-NS-8966\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8966\",\r\n \"createdAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"updatedAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8966.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS0zMDI2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 06:57:43 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Service-Bus-Resource-Provider/SN1", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-id": [ + "8dffaa8c-a44f-4828-873c-5c3ca92a598b_M7SN1_M7SN1" + ], + "Server-SB": [ + "Service-Bus-Resource-Provider/SN1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "2b56b058-b882-41b0-86ba-d124b7a410c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T065744Z:2b56b058-b882-41b0-86ba-d124b7a410c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "702" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966\",\r\n \"name\": \"sdk-NS-8966\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8966\",\r\n \"createdAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"updatedAt\": \"2020-05-11T06:57:29.137Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8966.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0689de3b-1681-4916-ab7b-8776faae9e39" + "6322613b-4360-4e98-ad2f-e05272369bd3" ], "accept-language": [ "en-US" @@ -349,8 +416,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -358,29 +425,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:05 GMT" + "Mon, 11 May 2020 06:57:48 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "01f456a3-809d-4e99-8f50-1012e22f2975_M4CH3_M4CH3" + "369a885f-2bea-44bb-9684-b25939f06b8e_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "f1f575b9-0c68-4851-b833-748886e853c2" + "ac2ed838-99a5-4e20-8054-f5250b3fe1af" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001305Z:f1f575b9-0c68-4851-b833-748886e853c2" + "WESTUS:20200511T065749Z:ac2ed838-99a5-4e20-8054-f5250b3fe1af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -389,7 +456,7 @@ "nosniff" ], "Content-Length": [ - "694" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -398,17 +465,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026\",\r\n \"name\": \"sdk-Namespace-3026\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3026\",\r\n \"createdAt\": \"2019-02-01T00:12:29.24Z\",\r\n \"updatedAt\": \"2019-02-01T00:12:59.45Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3026.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966\",\r\n \"name\": \"sdk-NS-8966\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8966\",\r\n \"createdAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"updatedAt\": \"2020-05-11T06:57:29.137Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8966.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS0zMDI2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f5033a8-a47f-4a91-8aa9-a5ed5bf669d6" + "3610b529-6783-4ef5-a7e2-68294ca443ab" ], "accept-language": [ "en-US" @@ -416,8 +483,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -425,29 +492,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:05 GMT" + "Mon, 11 May 2020 06:57:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c8d78b3a-1f39-4973-802f-1f40431913fc_M4CH3_M4CH3" + "815feca1-4175-426d-95d3-1b0702198cec_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "991cf331-fcc5-4fea-a5e4-00e2f4059fcf" + "80b26e6e-59f6-4e2c-ac5c-19021861e13f" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001305Z:991cf331-fcc5-4fea-a5e4-00e2f4059fcf" + "WESTUS:20200511T065749Z:80b26e6e-59f6-4e2c-ac5c-19021861e13f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -456,7 +523,7 @@ "nosniff" ], "Content-Length": [ - "694" + "702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,17 +532,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026\",\r\n \"name\": \"sdk-Namespace-3026\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3026\",\r\n \"createdAt\": \"2019-02-01T00:12:29.24Z\",\r\n \"updatedAt\": \"2019-02-01T00:12:59.45Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3026.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966\",\r\n \"name\": \"sdk-NS-8966\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8966\",\r\n \"createdAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"updatedAt\": \"2020-05-11T06:57:29.137Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8966.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS0zMDI2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a86d9c2e-4cd0-4f68-b626-d8b5cb73d45f" + "cb93ed6e-24b0-4a86-b412-ac5c5ed68241" ], "accept-language": [ "en-US" @@ -483,8 +550,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -492,29 +559,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:06 GMT" + "Mon, 11 May 2020 06:57:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a4188979-0c35-45ac-9fa5-8a6eef9713cf_M4CH3_M4CH3" + "9493bedc-8bc3-4437-8b8a-1d3d4c8120dc_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-correlation-request-id": [ - "387120c6-c332-41d5-a31e-04ffb3a81de8" + "fe836468-4fd6-49aa-9500-e88ecf4c4238" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001306Z:387120c6-c332-41d5-a31e-04ffb3a81de8" + "WESTUS:20200511T065750Z:fe836468-4fd6-49aa-9500-e88ecf4c4238" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -523,7 +590,7 @@ "nosniff" ], "Content-Length": [ - "697" + "704" ], "Content-Type": [ "application/json; charset=utf-8" @@ -532,17 +599,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026\",\r\n \"name\": \"sdk-Namespace-3026\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3026\",\r\n \"createdAt\": \"2019-02-01T00:12:29.24Z\",\r\n \"updatedAt\": \"2019-02-01T00:13:06.32Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3026.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966\",\r\n \"name\": \"sdk-NS-8966\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8966\",\r\n \"createdAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"updatedAt\": \"2020-05-11T06:57:49.67Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8966.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXM/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38fe0327-6976-4578-8417-5e5d216eb4e9" + "e0932bb4-8b5e-4503-894b-1b1b83b15ba3" ], "accept-language": [ "en-US" @@ -550,8 +617,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -559,29 +626,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:05 GMT" + "Mon, 11 May 2020 06:57:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "51105da8-10fc-401b-b06f-09b58ac360b6_M4CH3_M4CH3" + "f09ca9a1-7f49-41c1-8259-66217190f77f_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "db1a2c8a-3ba6-4879-91f7-118a48f7a7e3" + "57bf8c70-6fa5-46d9-93ac-4c4d2102ea3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001305Z:db1a2c8a-3ba6-4879-91f7-118a48f7a7e3" + "WESTUS:20200511T065749Z:57bf8c70-6fa5-46d9-93ac-4c4d2102ea3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -590,7 +657,7 @@ "nosniff" ], "Content-Length": [ - "706" + "714" ], "Content-Type": [ "application/json; charset=utf-8" @@ -599,17 +666,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026\",\r\n \"name\": \"sdk-Namespace-3026\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3026\",\r\n \"createdAt\": \"2019-02-01T00:12:29.24Z\",\r\n \"updatedAt\": \"2019-02-01T00:12:59.45Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3026.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966\",\r\n \"name\": \"sdk-NS-8966\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8966\",\r\n \"createdAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"updatedAt\": \"2020-05-11T06:57:29.137Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8966.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub/namespaces?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE3LTA0LTAx", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub/namespaces?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16173150-c261-4827-b603-7130fcda05ce" + "074a8d95-ae18-493f-8d8c-b03c8c02756e" ], "accept-language": [ "en-US" @@ -617,8 +684,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -626,29 +693,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:05 GMT" + "Mon, 11 May 2020 06:57:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "d207b076-8e8c-404d-a748-073fe22d4b39_M4CH3_M4CH3" + "d86c6326-2155-4ba5-b996-bdd70834199c_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "0a3ba51a-b6f7-47cf-b451-46f47bdd4b9c" + "e931cfe6-0aff-46ee-86a3-792c1f6749e1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001305Z:0a3ba51a-b6f7-47cf-b451-46f47bdd4b9c" + "WESTUS:20200511T065749Z:e931cfe6-0aff-46ee-86a3-792c1f6749e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -657,7 +724,7 @@ "nosniff" ], "Content-Length": [ - "21986" + "56387" ], "Content-Type": [ "application/json; charset=utf-8" @@ -666,17 +733,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing/providers/Microsoft.EventHub/namespaces/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:jonl-testing\",\r\n \"createdAt\": \"2018-12-20T14:57:48.55Z\",\r\n \"updatedAt\": \"2019-01-04T16:43:45.017Z\",\r\n \"serviceBusEndpoint\": \"https://jonl-Testing.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1627\",\r\n \"name\": \"sdk-Namespace-1627\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1627\",\r\n \"createdAt\": \"2019-01-31T23:29:09.06Z\",\r\n \"updatedAt\": \"2019-01-31T23:29:38.477Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1627.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/skulkarneventgridtest\",\r\n \"name\": \"skulkarneventgridtest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:skulkarneventgridtest\",\r\n \"createdAt\": \"2017-07-10T20:21:28.01Z\",\r\n \"updatedAt\": \"2017-07-10T20:21:55.28Z\",\r\n \"serviceBusEndpoint\": \"https://skulkarneventgridtest.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/sbconversion-geodr-cbn04\",\r\n \"name\": \"sbconversion-geodr-cbn04\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sbconversion-geodr-cbn04\",\r\n \"createdAt\": \"2018-03-12T22:37:22.427Z\",\r\n \"updatedAt\": \"2018-03-12T22:37:51.813Z\",\r\n \"serviceBusEndpoint\": \"https://sbconversion-geodr-cbn04.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2560\",\r\n \"name\": \"sdk-Namespace-2560\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-2560\",\r\n \"createdAt\": \"2019-01-19T02:02:10.703Z\",\r\n \"updatedAt\": \"2019-01-19T02:02:38.637Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-2560.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026\",\r\n \"name\": \"sdk-Namespace-3026\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3026\",\r\n \"createdAt\": \"2019-02-01T00:12:29.24Z\",\r\n \"updatedAt\": \"2019-02-01T00:12:59.45Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3026.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.EventHub/namespaces/mparktest\",\r\n \"name\": \"mparktest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:mparktest\",\r\n \"createdAt\": \"2019-01-23T18:26:25.363Z\",\r\n \"updatedAt\": \"2019-01-23T18:26:54.797Z\",\r\n \"serviceBusEndpoint\": \"https://mparktest.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5681-ns\",\r\n \"name\": \"eh-dotnet-av-5681-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5681-ns\",\r\n \"createdAt\": \"2019-01-18T17:04:42.227Z\",\r\n \"updatedAt\": \"2019-01-18T17:05:10.113Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5681-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8882\",\r\n \"name\": \"sdk-Namespace-8882\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8882\",\r\n \"createdAt\": \"2019-01-18T21:07:01.573Z\",\r\n \"updatedAt\": \"2019-01-18T22:11:27.98Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8882.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources/providers/Microsoft.EventHub/namespaces/portalTestEHNamespace\",\r\n \"name\": \"portalTestEHNamespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 11,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:portaltestehnamespace\",\r\n \"createdAt\": \"2019-01-15T00:29:41Z\",\r\n \"updatedAt\": \"2019-01-15T00:30:11.137Z\",\r\n \"serviceBusEndpoint\": \"https://portalTestEHNamespace.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-1302\",\r\n \"name\": \"sdk-Namespace-1302\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-1302\",\r\n \"createdAt\": \"2019-01-19T01:56:34.033Z\",\r\n \"updatedAt\": \"2019-01-19T01:57:06.56Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-1302.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice/providers/Microsoft.EventHub/namespaces/TestPPG1718\",\r\n \"name\": \"TestPPG1718\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"runnerName\": \"EventHubAMQPRunner,EventHubLatencyRunner,EventHubRestLatencyRunner,EventHubRESTRunner\",\r\n \"scaleUnit\": \"PROD-BL3-535\",\r\n \"Batch\": \"B1\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:testppg1718\",\r\n \"createdAt\": \"2019-01-18T20:01:55.723Z\",\r\n \"updatedAt\": \"2019-01-25T01:56:58.097Z\",\r\n \"serviceBusEndpoint\": \"https://TestPPG1718.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7968\",\r\n \"name\": \"sdk-Namespace-7968\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-7968\",\r\n \"createdAt\": \"2019-01-22T18:39:34.853Z\",\r\n \"updatedAt\": \"2019-01-22T18:40:05.19Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-7968.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-714\",\r\n \"name\": \"sdk-Namespace-714\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-714\",\r\n \"createdAt\": \"2019-01-19T01:50:56.84Z\",\r\n \"updatedAt\": \"2019-01-19T01:51:29.973Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-714.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9561\",\r\n \"name\": \"sdk-Namespace-9561\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-9561\",\r\n \"createdAt\": \"2019-01-22T18:33:49.517Z\",\r\n \"updatedAt\": \"2019-01-22T18:37:31.193Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-9561.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5570\",\r\n \"name\": \"sdk-Namespace-5570\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-5570\",\r\n \"createdAt\": \"2019-01-22T18:49:39.53Z\",\r\n \"updatedAt\": \"2019-01-22T18:56:56.493Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-5570.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5701-ns\",\r\n \"name\": \"eh-dotnet-av-5701-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5701-ns\",\r\n \"createdAt\": \"2019-01-18T20:32:31.143Z\",\r\n \"updatedAt\": \"2019-01-18T20:32:58.863Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5701-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5821-ns\",\r\n \"name\": \"eh-dotnet-av-5821-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5821-ns\",\r\n \"createdAt\": \"2019-01-25T21:10:18.69Z\",\r\n \"updatedAt\": \"2019-01-25T21:10:43.677Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5821-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2157\",\r\n \"name\": \"sdk-Namespace-2157\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-2157\",\r\n \"createdAt\": \"2019-01-22T18:34:26.237Z\",\r\n \"updatedAt\": \"2019-01-22T18:37:31.067Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-2157.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2826\",\r\n \"name\": \"sdk-Namespace-2826\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-2826\",\r\n \"createdAt\": \"2019-01-18T21:06:24.993Z\",\r\n \"updatedAt\": \"2019-01-18T22:11:28.16Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-2826.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5751-ns\",\r\n \"name\": \"eh-dotnet-av-5751-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5751-ns\",\r\n \"createdAt\": \"2019-01-18T23:54:13.25Z\",\r\n \"updatedAt\": \"2019-01-18T23:54:41.58Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5751-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8183\",\r\n \"name\": \"sdk-Namespace-8183\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8183\",\r\n \"createdAt\": \"2019-01-22T18:43:23.657Z\",\r\n \"updatedAt\": \"2019-01-22T18:47:06.697Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8183.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4444\",\r\n \"name\": \"sdk-Namespace-4444\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-4444\",\r\n \"createdAt\": \"2019-01-22T18:50:16.563Z\",\r\n \"updatedAt\": \"2019-01-22T18:56:56.413Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-4444.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8479\",\r\n \"name\": \"sdk-Namespace-8479\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8479\",\r\n \"createdAt\": \"2019-01-19T01:50:37.26Z\",\r\n \"updatedAt\": \"2019-01-19T01:51:11.32Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8479.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5032\",\r\n \"name\": \"sdk-Namespace-5032\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-5032\",\r\n \"createdAt\": \"2019-01-22T18:44:00.5Z\",\r\n \"updatedAt\": \"2019-01-22T18:47:03.533Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-5032.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg/providers/Microsoft.EventHub/namespaces/eh-dotnet-av-5731-ns\",\r\n \"name\": \"eh-dotnet-av-5731-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:eh-dotnet-av-5731-ns\",\r\n \"createdAt\": \"2019-01-18T22:36:33.633Z\",\r\n \"updatedAt\": \"2019-01-18T22:37:01.12Z\",\r\n \"serviceBusEndpoint\": \"https://eh-dotnet-av-5731-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8292\",\r\n \"name\": \"sdk-Namespace-8292\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-8292\",\r\n \"createdAt\": \"2019-01-19T01:45:42.92Z\",\r\n \"updatedAt\": \"2019-01-19T01:46:11.333Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-8292.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest/providers/Microsoft.EventHub/namespaces/ali-test-eh\",\r\n \"name\": \"ali-test-eh\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:ali-test-eh\",\r\n \"createdAt\": \"2019-01-16T00:25:07.527Z\",\r\n \"updatedAt\": \"2019-01-16T00:25:36.607Z\",\r\n \"serviceBusEndpoint\": \"https://ali-test-eh.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP/providers/Microsoft.EventHub/namespaces/skulkarnvnetga\",\r\n \"name\": \"skulkarnvnetga\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"EAST US 2 EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:skulkarnvnetga\",\r\n \"createdAt\": \"2018-11-20T22:01:52.26Z\",\r\n \"updatedAt\": \"2018-11-20T22:02:18.233Z\",\r\n \"serviceBusEndpoint\": \"https://skulkarnvnetga.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/sdk-Namespace-9053\",\r\n \"name\": \"sdk-Namespace-9053\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"South Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-9053\",\r\n \"createdAt\": \"2019-01-22T18:38:58.087Z\",\r\n \"updatedAt\": \"2019-01-22T18:39:27.663Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-9053.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP/providers/Microsoft.EventHub/namespaces/sbconversion-geodr-cdm03\",\r\n \"name\": \"sbconversion-geodr-cdm03\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US EUAP\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sbconversion-geodr-cdm03\",\r\n \"createdAt\": \"2018-03-12T22:36:27.38Z\",\r\n \"updatedAt\": \"2018-03-12T22:36:52.023Z\",\r\n \"serviceBusEndpoint\": \"https://sbconversion-geodr-cdm03.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope3\",\r\n \"name\": \"ardsouzargmovewesteurope3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope3\",\r\n \"createdAt\": \"2020-02-04T17:52:36.543Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope3.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope2\",\r\n \"name\": \"ardsouzargmovewesteurope2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope2\",\r\n \"createdAt\": \"2020-02-04T17:51:29.303Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/logcompprodby3533\",\r\n \"name\": \"logcompprodby3533\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:logcompprodby3533\",\r\n \"createdAt\": \"2020-05-03T22:36:52.07Z\",\r\n \"updatedAt\": \"2020-05-03T22:37:40.05Z\",\r\n \"serviceBusEndpoint\": \"https://logcompprodby3533.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope5\",\r\n \"name\": \"ardsouzargmovewesteurope5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope5\",\r\n \"createdAt\": \"2020-02-04T17:54:52.51Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope5.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope4\",\r\n \"name\": \"ardsouzargmovewesteurope4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope4\",\r\n \"createdAt\": \"2020-02-04T17:53:44.357Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope4.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope7\",\r\n \"name\": \"ardsouzargmovewesteurope7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope7\",\r\n \"createdAt\": \"2020-02-04T17:57:08.773Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope7.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope6\",\r\n \"name\": \"ardsouzargmovewesteurope6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope6\",\r\n \"createdAt\": \"2020-02-04T17:56:00.547Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope6.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/BalaNPvtLinkTest\",\r\n \"name\": \"BalaNPvtLinkTest\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:balanpvtlinktest\",\r\n \"createdAt\": \"2020-05-07T17:04:10.58Z\",\r\n \"updatedAt\": \"2020-05-07T17:05:04.29Z\",\r\n \"serviceBusEndpoint\": \"https://BalaNPvtLinkTest.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium\",\r\n \"tier\": \"Premium\",\r\n \"capacity\": 0\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestUS/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS\",\r\n \"name\": \"FirewallTestEHNS\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Failed\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns\",\r\n \"createdAt\": \"2020-02-10T22:58:39.517Z\",\r\n \"updatedAt\": \"2020-02-10T23:57:30.203Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sv201905092045\",\r\n \"name\": \"sv201905092045\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sv201905092045\",\r\n \"createdAt\": \"2019-05-10T03:45:59.437Z\",\r\n \"updatedAt\": \"2019-05-10T03:46:30.23Z\",\r\n \"serviceBusEndpoint\": \"https://sv201905092045.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sjprivateendpoint\",\r\n \"name\": \"sjprivateendpoint\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjprivateendpoint\",\r\n \"createdAt\": \"2020-04-10T02:57:38.27Z\",\r\n \"updatedAt\": \"2020-04-10T02:58:31.04Z\",\r\n \"serviceBusEndpoint\": \"https://sjprivateendpoint.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/serkant-testdedicated\",\r\n \"name\": \"serkant-testdedicated\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:serkant-testdedicated\",\r\n \"createdAt\": \"2020-02-22T00:00:00.817Z\",\r\n \"updatedAt\": \"2020-02-22T00:00:48.49Z\",\r\n \"serviceBusEndpoint\": \"https://serkant-testdedicated.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/cesar-local-store/providers/Microsoft.EventHub/namespaces/cesar-local-test\",\r\n \"name\": \"cesar-local-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/3ab905bd-5de3-4363-8236-96dd443a454f/resourceGroups/vanquish-eastus-eh-cluster/providers/Microsoft.EventHub/clusters/vanquish-eastus-eh-cluster-test-localstore\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:cesar-local-test\",\r\n \"createdAt\": \"2020-05-04T20:48:30.883Z\",\r\n \"updatedAt\": \"2020-05-04T20:51:18.247Z\",\r\n \"serviceBusEndpoint\": \"https://cesar-local-test.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/enableBYOK1\",\r\n \"name\": \"enableBYOK1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:enablebyok1\",\r\n \"createdAt\": \"2019-08-02T20:04:48.823Z\",\r\n \"updatedAt\": \"2019-08-02T20:05:41.633Z\",\r\n \"serviceBusEndpoint\": \"https://enableBYOK1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouza-test-3-24\",\r\n \"name\": \"ardsouza-test-3-24\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-test-3-24\",\r\n \"createdAt\": \"2020-03-25T00:43:41.953Z\",\r\n \"updatedAt\": \"2020-03-25T00:44:26.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-test-3-24.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS01\",\r\n \"name\": \"FirewallTestEHNS01\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns01\",\r\n \"createdAt\": \"2020-02-10T23:45:31.33Z\",\r\n \"updatedAt\": \"2020-02-10T23:46:22.787Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS01.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjaztest1centralus\",\r\n \"name\": \"sjaztest1centralus\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 2,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjaztest1centralus\",\r\n \"createdAt\": \"2020-05-01T03:18:33.267Z\",\r\n \"updatedAt\": \"2020-05-01T07:14:36.14Z\",\r\n \"serviceBusEndpoint\": \"https://sjaztest1centralus.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS02\",\r\n \"name\": \"FirewallTestEHNS02\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns02\",\r\n \"createdAt\": \"2020-02-12T03:00:00.42Z\",\r\n \"updatedAt\": \"2020-02-12T03:00:49.62Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS02.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/enableBYOK\",\r\n \"name\": \"enableBYOK\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"1480cdbe-0eb6-44da-bb9c-4007de6a4911\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"testkey2\",\r\n \"keyVaultUri\": \"https://testehbyok-vault1.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:enablebyok\",\r\n \"createdAt\": \"2019-08-01T15:36:37.02Z\",\r\n \"updatedAt\": \"2020-05-04T16:30:10.157Z\",\r\n \"serviceBusEndpoint\": \"https://enableBYOK.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source4\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source4\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source4\",\r\n \"createdAt\": \"2020-02-04T17:48:58.03Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source4.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source5\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source5\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source5\",\r\n \"createdAt\": \"2020-02-04T17:50:01.78Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source5.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/BYOK-Test-ali\",\r\n \"name\": \"BYOK-Test-ali\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:byok-test-ali\",\r\n \"createdAt\": \"2019-10-14T16:29:22.147Z\",\r\n \"updatedAt\": \"2019-12-02T20:05:35.86Z\",\r\n \"serviceBusEndpoint\": \"https://BYOK-Test-ali.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source6\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source6\",\r\n \"createdAt\": \"2020-02-04T17:51:04.497Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source6.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source7\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source7\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source7\",\r\n \"createdAt\": \"2020-02-04T17:52:06.7Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source7.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/clemensvtest/providers/Microsoft.EventHub/namespaces/clemensv6\",\r\n \"name\": \"clemensv6\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"North Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:clemensv6\",\r\n \"createdAt\": \"2019-01-15T14:38:47.493Z\",\r\n \"updatedAt\": \"2020-03-23T10:15:44.843Z\",\r\n \"serviceBusEndpoint\": \"https://clemensv6.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source2\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source2\",\r\n \"createdAt\": \"2020-02-04T17:46:54.237Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source3\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source3\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source3\",\r\n \"createdAt\": \"2020-02-04T17:47:56.23Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source3.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-7508/providers/Microsoft.EventHub/namespaces/sdk-NS-1654\",\r\n \"name\": \"sdk-NS-1654\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-1654\",\r\n \"createdAt\": \"2020-05-11T06:44:07.463Z\",\r\n \"updatedAt\": \"2020-05-11T06:44:56.41Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-1654.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source8\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source8\",\r\n \"createdAt\": \"2020-02-04T17:53:09.51Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source8.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source9\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source9\",\r\n \"createdAt\": \"2020-02-04T17:54:11.72Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source9.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdkTestingnamespace2\",\r\n \"name\": \"sdkTestingnamespace2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"4a0767d9-5ab1-4edb-953e-ba90a5953cfa\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"sdktestingkey1\",\r\n \"keyVaultUri\": \"https://sdktestingkey.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdktestingnamespace2\",\r\n \"createdAt\": \"2019-08-13T02:40:32.443Z\",\r\n \"updatedAt\": \"2020-03-30T22:29:10.703Z\",\r\n \"serviceBusEndpoint\": \"https://sdkTestingnamespace2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EastUS2/providers/Microsoft.EventHub/namespaces/nsBenchMarktest1\",\r\n \"name\": \"nsBenchMarktest1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/82070742-c572-4a28-b265-9119eb4818bf/resourceGroups/DNAM365A/providers/Microsoft.EventHub/clusters/M365AEventHubClusterProdSecondary\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:nsbenchmarktest1\",\r\n \"createdAt\": \"2019-05-03T20:57:54.45Z\",\r\n \"updatedAt\": \"2019-05-03T20:58:21.633Z\",\r\n \"serviceBusEndpoint\": \"https://nsBenchMarktest1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/arthur\",\r\n \"name\": \"arthur\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:arthur\",\r\n \"createdAt\": \"2019-08-15T17:36:31.993Z\",\r\n \"updatedAt\": \"2019-08-15T17:37:20.383Z\",\r\n \"serviceBusEndpoint\": \"https://arthur.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Basic\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjehbasic\",\r\n \"name\": \"sjehbasic\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Brazil South\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjehbasic\",\r\n \"createdAt\": \"2020-05-01T03:28:21.04Z\",\r\n \"updatedAt\": \"2020-05-01T03:29:11.29Z\",\r\n \"serviceBusEndpoint\": \"https://sjehbasic.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/mmrg4193/providers/Microsoft.EventHub/namespaces/myehkafkadest19690\",\r\n \"name\": \"myehkafkadest19690\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:myehkafkadest19690\",\r\n \"createdAt\": \"2019-05-02T18:13:45.82Z\",\r\n \"updatedAt\": \"2019-05-02T18:14:13.547Z\",\r\n \"serviceBusEndpoint\": \"https://myehkafkadest19690.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966\",\r\n \"name\": \"sdk-NS-8966\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8966\",\r\n \"createdAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"updatedAt\": \"2020-05-11T06:57:29.137Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8966.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/testDataSender\",\r\n \"name\": \"testDataSender\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testdatasender\",\r\n \"createdAt\": \"2019-06-26T06:24:13.92Z\",\r\n \"updatedAt\": \"2019-06-26T06:25:03.01Z\",\r\n \"serviceBusEndpoint\": \"https://testDataSender.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EastAsia/providers/Microsoft.EventHub/namespaces/sj-hk2-507-secondary\",\r\n \"name\": \"sj-hk2-507-secondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Southeast Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-hk2-507-secondary\",\r\n \"createdAt\": \"2020-01-07T22:20:48.123Z\",\r\n \"updatedAt\": \"2020-01-07T22:24:10.75Z\",\r\n \"serviceBusEndpoint\": \"https://sj-hk2-507-secondary.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/mmrg6755/providers/Microsoft.EventHub/namespaces/myehkafkadest2349\",\r\n \"name\": \"myehkafkadest2349\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Central US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:myehkafkadest2349\",\r\n \"createdAt\": \"2019-05-10T17:57:20.02Z\",\r\n \"updatedAt\": \"2019-05-10T17:57:49.16Z\",\r\n \"serviceBusEndpoint\": \"https://myehkafkadest2349.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/fps-test-ns\",\r\n \"name\": \"fps-test-ns\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:fps-test-ns\",\r\n \"createdAt\": \"2020-03-12T22:52:50.62Z\",\r\n \"updatedAt\": \"2020-03-13T23:17:24.527Z\",\r\n \"serviceBusEndpoint\": \"https://fps-test-ns.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 12\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/jfgRsrcGrp1/providers/Microsoft.EventHub/namespaces/jfgNmSpc1\",\r\n \"name\": \"jfgNmSpc1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:jfgnmspc1\",\r\n \"createdAt\": \"2019-08-06T23:10:44.84Z\",\r\n \"updatedAt\": \"2019-08-06T23:11:33.213Z\",\r\n \"serviceBusEndpoint\": \"https://jfgNmSpc1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/DocsDemoNamespace2\",\r\n \"name\": \"DocsDemoNamespace2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:docsdemonamespace2\",\r\n \"createdAt\": \"2020-03-12T22:51:57.92Z\",\r\n \"updatedAt\": \"2020-03-17T22:07:58.567Z\",\r\n \"serviceBusEndpoint\": \"https://DocsDemoNamespace2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/francoThroughputNamespace\",\r\n \"name\": \"francoThroughputNamespace\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:francothroughputnamespace\",\r\n \"createdAt\": \"2019-06-27T18:01:26.18Z\",\r\n \"updatedAt\": \"2019-06-27T18:02:13.54Z\",\r\n \"serviceBusEndpoint\": \"https://francoThroughputNamespace.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewestus-1\",\r\n \"name\": \"ardsouzargmovewestus-1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewestus-1\",\r\n \"createdAt\": \"2020-02-04T17:42:43.18Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewestus-1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/sjrg/providers/Microsoft.EventHub/namespaces/sjvnet\",\r\n \"name\": \"sjvnet\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sjvnet\",\r\n \"createdAt\": \"2020-05-01T00:58:53.213Z\",\r\n \"updatedAt\": \"2020-05-01T01:15:25.05Z\",\r\n \"serviceBusEndpoint\": \"https://sjvnet.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/capturerg/providers/Microsoft.EventHub/namespaces/testSAS\",\r\n \"name\": \"testSAS\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testsas\",\r\n \"createdAt\": \"2019-08-12T21:57:26.127Z\",\r\n \"updatedAt\": \"2019-08-12T21:58:14.37Z\",\r\n \"serviceBusEndpoint\": \"https://testSAS.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/JustResource/providers/Microsoft.EventHub/namespaces/JustEH\",\r\n \"name\": \"JustEH\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Japan West\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:justeh\",\r\n \"createdAt\": \"2020-04-15T23:21:37.433Z\",\r\n \"updatedAt\": \"2020-04-15T23:22:42.52Z\",\r\n \"serviceBusEndpoint\": \"https://JustEH.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/almohse-byok-secondary\",\r\n \"name\": \"almohse-byok-secondary\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"041f4239-c2a5-4f70-85af-fc974b941c87\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"ali-key\",\r\n \"keyVaultUri\": \"https://ali-test-byok-keyvault.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:almohse-byok-secondary\",\r\n \"createdAt\": \"2019-09-25T22:29:40.05Z\",\r\n \"updatedAt\": \"2020-03-27T22:46:09.727Z\",\r\n \"serviceBusEndpoint\": \"https://almohse-byok-secondary.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/mmrg6755/providers/Microsoft.EventHub/namespaces/myehkafkasource5061\",\r\n \"name\": \"myehkafkasource5061\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:myehkafkasource5061\",\r\n \"createdAt\": \"2019-05-10T17:56:38.147Z\",\r\n \"updatedAt\": \"2019-05-10T17:57:03.693Z\",\r\n \"serviceBusEndpoint\": \"https://myehkafkasource5061.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestUS-Dest-1/providers/Microsoft.EventHub/namespaces/Ardsouza-MoveTest-WestUS-Source10\",\r\n \"name\": \"Ardsouza-MoveTest-WestUS-Source10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-movetest-westus-source10\",\r\n \"createdAt\": \"2020-02-04T17:55:13.89Z\",\r\n \"updatedAt\": \"2020-02-04T18:14:37.977Z\",\r\n \"serviceBusEndpoint\": \"https://Ardsouza-MoveTest-WestUS-Source10.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope10\",\r\n \"name\": \"ardsouzargmovewesteurope10\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope10\",\r\n \"createdAt\": \"2020-02-04T18:00:31.753Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope10.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testehgeodr2/providers/Microsoft.EventHub/namespaces/testehgeodrprimaryns1\",\r\n \"name\": \"testehgeodrprimaryns1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 20,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testehgeodrprimaryns1\",\r\n \"createdAt\": \"2018-02-21T18:02:15.81Z\",\r\n \"updatedAt\": \"2019-01-18T00:20:52.33Z\",\r\n \"serviceBusEndpoint\": \"https://testehgeodrprimaryns1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/privateEndpointsTesting-EH-2\",\r\n \"name\": \"privateEndpointsTesting-EH-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:privateendpointstesting-eh-2\",\r\n \"createdAt\": \"2020-02-28T21:57:07.507Z\",\r\n \"updatedAt\": \"2020-02-28T22:08:05.973Z\",\r\n \"serviceBusEndpoint\": \"https://privateEndpointsTesting-EH-2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-WestUS/providers/Microsoft.EventHub/namespaces/hmlam-by3-533\",\r\n \"name\": \"hmlam-by3-533\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:hmlam-by3-533\",\r\n \"createdAt\": \"2020-03-14T03:11:10.53Z\",\r\n \"updatedAt\": \"2020-03-14T03:11:57.557Z\",\r\n \"serviceBusEndpoint\": \"https://hmlam-by3-533.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS11\",\r\n \"name\": \"FirewallTestEHNS11\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns11\",\r\n \"createdAt\": \"2020-02-12T16:30:56.167Z\",\r\n \"updatedAt\": \"2020-02-12T16:31:42.52Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS11.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/FirewallTestEHNS12\",\r\n \"name\": \"FirewallTestEHNS12\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:firewalltestehns12\",\r\n \"createdAt\": \"2020-02-12T16:32:19.673Z\",\r\n \"updatedAt\": \"2020-02-12T16:33:06.957Z\",\r\n \"serviceBusEndpoint\": \"https://FirewallTestEHNS12.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/privateEndpointsTesting\",\r\n \"name\": \"privateEndpointsTesting\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:privateendpointstesting\",\r\n \"createdAt\": \"2020-02-28T02:46:31.04Z\",\r\n \"updatedAt\": \"2020-02-28T02:47:21.783Z\",\r\n \"serviceBusEndpoint\": \"https://privateEndpointsTesting.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sv201905092104\",\r\n \"name\": \"sv201905092104\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sv201905092104\",\r\n \"createdAt\": \"2019-05-10T04:05:11.593Z\",\r\n \"updatedAt\": \"2019-05-10T04:05:42.583Z\",\r\n \"serviceBusEndpoint\": \"https://sv201905092104.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 4\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/testehgeodr2/providers/Microsoft.EventHub/namespaces/testehgeodrsecondaryns1\",\r\n \"name\": \"testehgeodrsecondaryns1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 20,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:testehgeodrsecondaryns1\",\r\n \"createdAt\": \"2018-02-21T18:07:08.807Z\",\r\n \"updatedAt\": \"2019-01-18T00:37:11.63Z\",\r\n \"serviceBusEndpoint\": \"https://testehgeodrsecondaryns1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/ardsouzaclustertest/providers/Microsoft.EventHub/namespaces/ardsouza-test-3-24-2\",\r\n \"name\": \"ardsouza-test-3-24-2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-test-3-24-2\",\r\n \"createdAt\": \"2020-03-25T00:45:44.757Z\",\r\n \"updatedAt\": \"2020-03-25T00:46:31.027Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouza-test-3-24-2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-EastAsia/providers/Microsoft.EventHub/namespaces/sj-hk2-507\",\r\n \"name\": \"sj-hk2-507\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"East Asia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sj-hk2-507\",\r\n \"createdAt\": \"2020-01-07T01:15:27.563Z\",\r\n \"updatedAt\": \"2020-01-07T22:24:13.13Z\",\r\n \"serviceBusEndpoint\": \"https://sj-hk2-507.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sv2testpartiton\",\r\n \"name\": \"sv2testpartiton\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sv2testpartiton\",\r\n \"createdAt\": \"2019-05-29T17:47:48.45Z\",\r\n \"updatedAt\": \"2019-05-29T17:48:37.507Z\",\r\n \"serviceBusEndpoint\": \"https://sv2testpartiton.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/walmartdemorg/providers/Microsoft.EventHub/namespaces/example-walmart-demo\",\r\n \"name\": \"example-walmart-demo\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": true,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 20,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:example-walmart-demo\",\r\n \"createdAt\": \"2020-01-09T19:22:58.137Z\",\r\n \"updatedAt\": \"2020-01-09T20:07:11.08Z\",\r\n \"serviceBusEndpoint\": \"https://example-walmart-demo.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/walmartdemorg/providers/Microsoft.EventHub/namespaces/walmart-demo2\",\r\n \"name\": \"walmart-demo2\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 20,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:walmart-demo2\",\r\n \"createdAt\": \"2020-01-09T20:01:44.603Z\",\r\n \"updatedAt\": \"2020-01-09T20:07:11.153Z\",\r\n \"serviceBusEndpoint\": \"https://walmart-demo2.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/SDKTestingBYOK\",\r\n \"name\": \"SDKTestingBYOK\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"5f82f38c-3f7b-404b-a68e-38112e65b995\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdktestingbyok\",\r\n \"createdAt\": \"2019-08-06T01:17:41.877Z\",\r\n \"updatedAt\": \"2020-03-30T02:19:11.14Z\",\r\n \"serviceBusEndpoint\": \"https://SDKTestingBYOK.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope9\",\r\n \"name\": \"ardsouzargmovewesteurope9\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope9\",\r\n \"createdAt\": \"2020-02-04T17:59:24.193Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope9.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/mmrg4193/providers/Microsoft.EventHub/namespaces/myehkafkasource28074\",\r\n \"name\": \"myehkafkasource28074\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:myehkafkasource28074\",\r\n \"createdAt\": \"2019-05-02T18:12:18.083Z\",\r\n \"updatedAt\": \"2019-05-02T18:12:49.037Z\",\r\n \"serviceBusEndpoint\": \"https://myehkafkasource28074.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6707\",\r\n \"name\": \"sdk-Namespace-6707\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"identity\": {\r\n \"principalId\": \"b837b4cc-2234-4278-aa72-81d9dc054039\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6707\",\r\n \"createdAt\": \"2020-05-08T17:11:05.04Z\",\r\n \"updatedAt\": \"2020-05-08T17:12:14.127Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6707.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope8\",\r\n \"name\": \"ardsouzargmovewesteurope8\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope8\",\r\n \"createdAt\": \"2020-02-04T17:58:17.303Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope8.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/namespaces/key-rotate-test\",\r\n \"name\": \"key-rotate-test\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"identity\": {\r\n \"principalId\": \"115f5174-cd97-48f1-bdfb-659a3857354d\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"encryption\": {\r\n \"keySource\": \"Microsoft.KeyVault\",\r\n \"keyVaultProperties\": [\r\n {\r\n \"keyName\": \"byok-demo-key\",\r\n \"keyVaultUri\": \"https://byok-demo-keyvault.vault.azure.net\",\r\n \"keyVersion\": \"\"\r\n }\r\n ]\r\n },\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"clusterArmId\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/prod-by3-533-rg/providers/Microsoft.EventHub/clusters/PMTestCluster\",\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:key-rotate-test\",\r\n \"createdAt\": \"2019-11-01T18:03:19.453Z\",\r\n \"updatedAt\": \"2020-05-03T18:00:11.563Z\",\r\n \"serviceBusEndpoint\": \"https://key-rotate-test.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Ardsouza-MoveTest-WestEurope-Dest-1/providers/Microsoft.EventHub/namespaces/ardsouzargmovewesteurope1\",\r\n \"name\": \"ardsouzargmovewesteurope1\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West Europe\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:ardsouzargmovewesteurope1\",\r\n \"createdAt\": \"2020-02-04T17:50:20.743Z\",\r\n \"updatedAt\": \"2020-02-04T18:15:53.983Z\",\r\n \"serviceBusEndpoint\": \"https://ardsouzargmovewesteurope1.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS0zMDI2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "961a7062-2a9b-44fa-8249-0e6946db873f" + "3715fbfa-cb56-46a8-be34-1e8c1ea9aa97" ], "accept-language": [ "en-US" @@ -684,8 +751,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -699,29 +766,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:06 GMT" + "Mon, 11 May 2020 06:57:49 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ee7bdec4-cf4c-42bf-b6f7-a2cb8f5fead3_M4CH3_M4CH3" + "210d9f5c-3274-4d2c-8b5b-ea9a47508a2f_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "48" ], "x-ms-correlation-request-id": [ - "0e711b60-c328-4644-8def-a346c81ebdec" + "4f399cf3-97db-49f0-ad1c-53c533a836a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001306Z:0e711b60-c328-4644-8def-a346c81ebdec" + "WESTUS:20200511T065749Z:4f399cf3-97db-49f0-ad1c-53c533a836a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -730,7 +797,7 @@ "nosniff" ], "Content-Length": [ - "697" + "704" ], "Content-Type": [ "application/json; charset=utf-8" @@ -739,17 +806,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026\",\r\n \"name\": \"sdk-Namespace-3026\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-3026\",\r\n \"createdAt\": \"2019-02-01T00:12:29.24Z\",\r\n \"updatedAt\": \"2019-02-01T00:13:06.32Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-3026.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966\",\r\n \"name\": \"sdk-NS-8966\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"tag3\": \"value3\",\r\n \"tag4\": \"value4\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": true,\r\n \"maximumThroughputUnits\": 10,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Updating\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-8966\",\r\n \"createdAt\": \"2020-05-11T06:56:43.223Z\",\r\n \"updatedAt\": \"2020-05-11T06:57:49.67Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-8966.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS0zMDI2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89a22009-74e9-4ecd-98a4-90a38e5b1947" + "a5b63ca1-d502-4f10-9f90-581a50da8d59" ], "accept-language": [ "en-US" @@ -757,8 +824,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -766,32 +833,32 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:18 GMT" + "Mon, 11 May 2020 06:58:00 GMT" ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026/operationresults/sdk-Namespace-3026?api-version=2017-04-01" + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966/operationresults/sdk-NS-8966?api-version=2018-01-01-preview" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "e75b76f7-0479-466c-aebd-d29f4711d773_M5CH3_M5CH3" + "9b68de04-fbc9-45ef-9e76-8123e33f6ea0_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "7ffa3dc2-2c53-46c3-9167-18f335a089d4" + "fcd6028a-4bc4-49df-982d-73053cbd312d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001318Z:7ffa3dc2-2c53-46c3-9167-18f335a089d4" + "WESTUS:20200511T065801Z:fcd6028a-4bc4-49df-982d-73053cbd312d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,16 +877,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026/operationresults/sdk-Namespace-3026?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS0zMDI2L29wZXJhdGlvbnJlc3VsdHMvc2RrLU5hbWVzcGFjZS0zMDI2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966/operationresults/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtODk2Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -827,29 +894,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:47 GMT" + "Mon, 11 May 2020 06:58:30 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "44dba00f-d172-40ce-9324-f08e19f9f300_M5CH3_M5CH3" + "c193ffbd-c2ef-4bf3-9983-643271c933ba_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-correlation-request-id": [ - "5185faf1-a003-433c-873f-d0b4e2b72402" + "7c07fb77-d038-4502-a342-9ebd52e45d2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001348Z:5185faf1-a003-433c-873f-d0b4e2b72402" + "WESTUS:20200511T065831Z:7c07fb77-d038-4502-a342-9ebd52e45d2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -868,16 +935,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3026/operationresults/sdk-Namespace-3026?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0FDQ1N5c3RlbS9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5hbWVzcGFjZS0zMDI2L29wZXJhdGlvbnJlc3VsdHMvc2RrLU5hbWVzcGFjZS0zMDI2P2FwaS12ZXJzaW9uPTIwMTctMDQtMDE=", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-8208/providers/Microsoft.EventHub/namespaces/sdk-NS-8966/operationresults/sdk-NS-8966?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkV2ZW50SHViL25hbWVzcGFjZXMvc2RrLU5TLTg5NjYvb3BlcmF0aW9ucmVzdWx0cy9zZGstTlMtODk2Nj9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.3.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -885,29 +952,29 @@ "no-cache" ], "Date": [ - "Fri, 01 Feb 2019 00:13:47 GMT" + "Mon, 11 May 2020 06:58:30 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "a94004b0-d0ec-4e85-bfa2-b47172b88a6c_M5CH3_M5CH3" + "a1551ba5-f7ed-4e90-b135-f172432b4d74_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], "x-ms-correlation-request-id": [ - "05aa5ce5-8f97-489a-8b17-0b3ae0a838ed" + "14abac68-74f6-4f44-861c-36c7eefc9489" ], "x-ms-routing-request-id": [ - "WESTUS2:20190201T001348Z:05aa5ce5-8f97-489a-8b17-0b3ae0a838ed" + "WESTUS:20200511T065831Z:14abac68-74f6-4f44-861c-36c7eefc9489" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,14 +991,78 @@ }, "ResponseBody": "", "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-8208?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItODIwOD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63535a10-fb58-4e52-ad4f-1f86e7121eec" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Mon, 11 May 2020 06:58:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1ERUZBVUxUOjJERVZFTlRIVUI6MkQ4MjA4LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "77de485e-6b21-4848-9294-72b5d91f8696" + ], + "x-ms-correlation-request-id": [ + "77de485e-6b21-4848-9294-72b5d91f8696" + ], + "x-ms-routing-request-id": [ + "WESTUS:20200511T065831Z:77de485e-6b21-4848-9294-72b5d91f8696" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 202 } ], "Names": { "NamespaceKafkaCreateGetUpdateDelete": [ - "sdk-Namespace-3026" + "Default-EventHub-8208", + "sdk-NS-8966" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NetworkRuleSetCreateGetUpdateDelete.json b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NetworkRuleSetCreateGetUpdateDelete.json index e03aa59b3631..9a8538225198 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NetworkRuleSetCreateGetUpdateDelete.json +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/SessionRecords/ScenarioTests/NetworkRuleSetCreateGetUpdateDelete.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWI/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e3c5603-b1a4-4a2d-9d00-3f6ddf32d07b" + "30eb39e5-0f85-4893-8cbc-cacc50caf7fe" ], "accept-language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -24,7 +24,7 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:38:06 GMT" + "Mon, 11 May 2020 07:17:04 GMT" ], "Pragma": [ "no-cache" @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "0a0fd659-120c-43b2-9a75-e3c294c28ab1" + "9a60c4cc-9b5d-4e70-86b8-6852c1aa4041" ], "x-ms-correlation-request-id": [ - "0a0fd659-120c-43b2-9a75-e3c294c28ab1" + "9a60c4cc-9b5d-4e70-86b8-6852c1aa4041" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023807Z:0a0fd659-120c-43b2-9a75-e3c294c28ab1" + "WESTUS:20200511T071705Z:9a60c4cc-9b5d-4e70-86b8-6852c1aa4041" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Content-Length": [ - "2841" + "3375" ], "Content-Type": [ "application/json; charset=utf-8" @@ -57,17 +57,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n {\r\n \"applicationId\": \"6201d19e-14fb-4472-a2d6-5634a5c97568\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/networkrulesets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableClusterRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/Default-EventHub-367?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlZ3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"Australia East\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bc861146-f70f-443f-b0a8-d33b23b5cf3b" + "944844b6-0035-4645-936e-6afe9bfeb052" ], "accept-language": [ "en-US" @@ -75,8 +75,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" ] }, "ResponseHeaders": { @@ -84,22 +90,22 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:38:06 GMT" + "Mon, 11 May 2020 07:17:07 GMT" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "bdf738ae-3e95-458f-af15-eef79b49ddd8" + "dabd9b8a-95d2-44ee-9a41-6ef67edf57d8" ], "x-ms-correlation-request-id": [ - "bdf738ae-3e95-458f-af15-eef79b49ddd8" + "dabd9b8a-95d2-44ee-9a41-6ef67edf57d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023807Z:bdf738ae-3e95-458f-af15-eef79b49ddd8" + "WESTUS:20200511T071708Z:dabd9b8a-95d2-44ee-9a41-6ef67edf57d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,7 +114,7 @@ "nosniff" ], "Content-Length": [ - "96357" + "200" ], "Content-Type": [ "application/json; charset=utf-8" @@ -117,17 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ACCSystem\",\r\n \"name\": \"ACCSystem\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AkkaTesting\",\r\n \"name\": \"AkkaTesting\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/alitest\",\r\n \"name\": \"alitest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Api-Default-North-Europe\",\r\n \"name\": \"Api-Default-North-Europe\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/archivetest\",\r\n \"name\": \"archivetest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/AzureDS\",\r\n \"name\": \"AzureDS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cleanupservice\",\r\n \"name\": \"cleanupservice\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_aliaslld3q3zahq55nv47yme4edex746qriykd3qomcn2eilvguhj7qamoxkn7x\",\r\n \"name\": \"cli_test_eh_aliaslld3q3zahq55nv47yme4edex746qriykd3qomcn2eilvguhj7qamoxkn7x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T00:41:01Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhub6fnxaf776fracfjjop6iw6ay4lie572twhfireu777hqoqgi4xtepu\",\r\n \"name\": \"cli_test_eh_eventnhub6fnxaf776fracfjjop6iw6ay4lie572twhfireu777hqoqgi4xtepu\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T18:40:54Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhub7thtnk7qtevhyv6sqcde43aihbwvopsxqwbsiw4wxvmvmb6s264f3v\",\r\n \"name\": \"cli_test_eh_eventnhub7thtnk7qtevhyv6sqcde43aihbwvopsxqwbsiw4wxvmvmb6s264f3v\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T18:46:19Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubbahw6iy4ixi2i7eg4eqpfcxiobbbt5eszft3vtomf5oodxgpoizfdv\",\r\n \"name\": \"cli_test_eh_eventnhubbahw6iy4ixi2i7eg4eqpfcxiobbbt5eszft3vtomf5oodxgpoizfdv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T01:46:36Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubbmx4o5mk3tojxkavbkglyjrsgyshcgdw66ksfgqeschtpjcqopku5n\",\r\n \"name\": \"cli_test_eh_eventnhubbmx4o5mk3tojxkavbkglyjrsgyshcgdw66ksfgqeschtpjcqopku5n\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T01:55:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubcauf2jl5ymsxgjfxrrdmc2idnlerp4odo5pvxnsops6dx57ugidsdu\",\r\n \"name\": \"cli_test_eh_eventnhubcauf2jl5ymsxgjfxrrdmc2idnlerp4odo5pvxnsops6dx57ugidsdu\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T16:04:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubfyq3hir4hkkwonbtcpdplui6ralcd3z7krxcvnwfy2o5jejbn43oih\",\r\n \"name\": \"cli_test_eh_eventnhubfyq3hir4hkkwonbtcpdplui6ralcd3z7krxcvnwfy2o5jejbn43oih\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T18:44:57Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"name\": \"cli_test_eh_eventnhublovr3gbmiwhpytzgb7ivanisggbghulgedzmgrchxxlnsk5xxjnfsf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:50:51Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubmrmwffpsh22qjbuuhl3uhlhcjycdhcagutmtjdh4utpjdk6maosgib\",\r\n \"name\": \"cli_test_eh_eventnhubmrmwffpsh22qjbuuhl3uhlhcjycdhcagutmtjdh4utpjdk6maosgib\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T00:41:02Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"name\": \"cli_test_eh_eventnhubpwwwwj36la5n5icn7iu3zue3zhtdvkmiqxividfypl7ltpre4ai6mr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:35:32Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubqwwfsrurzbq5qtrqkchzhmczf3hv64voq6h63wrepgnbe3kkxnb7cf\",\r\n \"name\": \"cli_test_eh_eventnhubqwwfsrurzbq5qtrqkchzhmczf3hv64voq6h63wrepgnbe3kkxnb7cf\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T01:54:55Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"name\": \"cli_test_eh_eventnhubrq7jm34q7g4cahrrktyqkm6hrknd4sfcm3fqtp7b2za6nhpfe3brt4\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:40:03Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubsbq3eb5zksazfaqs5yvhnt6h7wcdusbjvvgmvgpr72pylzbwk4yfkr\",\r\n \"name\": \"cli_test_eh_eventnhubsbq3eb5zksazfaqs5yvhnt6h7wcdusbjvvgmvgpr72pylzbwk4yfkr\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T01:51:02Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubt2brmkuhbhvzdep64zlzu3mfg2y4wgxmoxkh6hukboe222dxchpvpd\",\r\n \"name\": \"cli_test_eh_eventnhubt2brmkuhbhvzdep64zlzu3mfg2y4wgxmoxkh6hukboe222dxchpvpd\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T18:48:40Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"name\": \"cli_test_eh_eventnhubv5mnedkjvisjeuyi3gzyjbweqyzvbqkaxdhc35fpnjrjkmsm6uvbsv\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T18:10:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"name\": \"cli_test_eh_eventnhubygu2jh6bm6xz7xmrraeucxcapdo6z6rqjedfohdz2se2rievmnhlfi\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-11T19:24:59Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_eh_namespaceadh6fyoojjbuqx7emnozyj7lrh3ngnrlrxzwd3g676ts5eidus5r2a\",\r\n \"name\": \"cli_test_eh_namespaceadh6fyoojjbuqx7emnozyj7lrh3ngnrlrxzwd3g676ts5eidus5r2a\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2019-03-06T00:42:41Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"name\": \"cli_test_relay_namespaceutnnajk7notktvm3pz4bhv7iqaf6rmgytcz2dgjaumrt6u2wy2b\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-07-01T09:47:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"name\": \"cli_test_sb_namespace3vnfujejku5lmyp27epatdlz6umuklrq6xgz36n2hwlz3pnxnoga5x\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T02:00:28Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"name\": \"cli_test_sb_namespaceu22akig5sa3z7quh5lmqvgldk56h5zgytaqsfew6rcayhwbbebofs3\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"product\": \"azurecli\",\r\n \"cause\": \"automation\",\r\n \"date\": \"2018-09-19T01:59:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/CloudTestVMImage\",\r\n \"name\": \"CloudTestVMImage\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dashboards\",\r\n \"name\": \"dashboards\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/daylight\",\r\n \"name\": \"daylight\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-CentralUS\",\r\n \"name\": \"Default-ApplicationInsights-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ApplicationInsights-EastUS\",\r\n \"name\": \"Default-ApplicationInsights-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-BizTalk-West-US\",\r\n \"name\": \"Default-BizTalk-West-US\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-AustraliaSoutheast\",\r\n \"name\": \"Default-EventHub-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-BrazilSouth\",\r\n \"name\": \"Default-EventHub-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUS\",\r\n \"name\": \"Default-EventHub-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-CentralUSEUAP\",\r\n \"name\": \"Default-EventHub-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EastUS2\",\r\n \"name\": \"Default-EventHub-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-EASTUS2EUAP\",\r\n \"name\": \"Default-EventHub-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-NorthCentralUS\",\r\n \"name\": \"Default-EventHub-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-SouthCentralUS\",\r\n \"name\": \"Default-EventHub-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestCentralUS\",\r\n \"name\": \"Default-EventHub-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-EventHub-WestUS\",\r\n \"name\": \"Default-EventHub-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-767\",\r\n \"name\": \"Default-ServiceBus-767\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast\",\r\n \"name\": \"Default-ServiceBus-AustraliaEast\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaSoutheast\",\r\n \"name\": \"Default-ServiceBus-AustraliaSoutheast\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-BrazilSouth\",\r\n \"name\": \"Default-ServiceBus-BrazilSouth\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralIndia\",\r\n \"name\": \"Default-ServiceBus-CentralIndia\",\r\n \"location\": \"centralindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUS\",\r\n \"name\": \"Default-ServiceBus-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-CentralUSEUAP\",\r\n \"name\": \"Default-ServiceBus-CentralUSEUAP\",\r\n \"location\": \"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastAsia\",\r\n \"name\": \"Default-ServiceBus-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS\",\r\n \"name\": \"Default-ServiceBus-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EastUS2\",\r\n \"name\": \"Default-ServiceBus-EastUS2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-EASTUS2EUAP\",\r\n \"name\": \"Default-ServiceBus-EASTUS2EUAP\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-FranceCentral\",\r\n \"name\": \"Default-ServiceBus-FranceCentral\",\r\n \"location\": \"francecentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanEast\",\r\n \"name\": \"Default-ServiceBus-JapanEast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-JapanWest\",\r\n \"name\": \"Default-ServiceBus-JapanWest\",\r\n \"location\": \"japanwest\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthCentralUS\",\r\n \"name\": \"Default-ServiceBus-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-NorthEurope\",\r\n \"name\": \"Default-ServiceBus-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthCentralUS\",\r\n \"name\": \"Default-ServiceBus-SouthCentralUS\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SoutheastAsia\",\r\n \"name\": \"Default-ServiceBus-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-SouthIndia\",\r\n \"name\": \"Default-ServiceBus-SouthIndia\",\r\n \"location\": \"southindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestCentralUS\",\r\n \"name\": \"Default-ServiceBus-WestCentralUS\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestEurope\",\r\n \"name\": \"Default-ServiceBus-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-SQL-NorthCentralUS\",\r\n \"name\": \"Default-SQL-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastAsia\",\r\n \"name\": \"Default-Storage-EastAsia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-EastUS\",\r\n \"name\": \"Default-Storage-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthCentralUS\",\r\n \"name\": \"Default-Storage-NorthCentralUS\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-NorthEurope\",\r\n \"name\": \"Default-Storage-NorthEurope\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/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/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-SoutheastAsia\",\r\n \"name\": \"Default-Storage-SoutheastAsia\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestEurope\",\r\n \"name\": \"Default-Storage-WestEurope\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-TrafficManager\",\r\n \"name\": \"Default-TrafficManager\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-EastUS\",\r\n \"name\": \"Default-Web-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default_ServiceBus1_WestUS\",\r\n \"name\": \"Default_ServiceBus1_WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-ASE\",\r\n \"name\": \"DefaultResourceGroup-ASE\",\r\n \"location\": \"australiasoutheast\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-EUS\",\r\n \"name\": \"DefaultResourceGroup-EUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-SUK\",\r\n \"name\": \"DefaultResourceGroup-SUK\",\r\n \"location\": \"uksouth\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/DefaultResourceGroup-WEU\",\r\n \"name\": \"DefaultResourceGroup-WEU\",\r\n \"location\": \"westeurope\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvm\",\r\n \"name\": \"dl-cdb0-bvtvm\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb0-bvtvmac\",\r\n \"name\": \"dl-cdb0-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvm1\",\r\n \"name\": \"dl-cdb1-bvtvm1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-cdb1-bvtvmac\",\r\n \"name\": \"dl-cdb1-bvtvmac\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-nh-cdb1\",\r\n \"name\": \"dl-nh-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb1\",\r\n \"name\": \"dl-sb-cdb1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sb-cdb2\",\r\n \"name\": \"dl-sb-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb2\",\r\n \"name\": \"dl-sbcit-cdb2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcit-cdb3\",\r\n \"name\": \"dl-sbcit-cdb3\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dl-sbcitstg-cdb\",\r\n \"name\": \"dl-sbcitstg-cdb\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-ap01\",\r\n \"name\": \"dlcl-ap01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m1\",\r\n \"name\": \"dlcl-sb-failover-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-m2\",\r\n \"name\": \"dlcl-sb-failover-m2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-failover-p1\",\r\n \"name\": \"dlcl-sb-failover-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-m1\",\r\n \"name\": \"dlcl-sb-jen-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-p1\",\r\n \"name\": \"dlcl-sb-jen-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-jen-r1\",\r\n \"name\": \"dlcl-sb-jen-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m1\",\r\n \"name\": \"dlcl-sb-m1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-m4\",\r\n \"name\": \"dlcl-sb-m4\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-p1\",\r\n \"name\": \"dlcl-sb-p1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r1\",\r\n \"name\": \"dlcl-sb-r1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dlcl-sb-r2\",\r\n \"name\": \"dlcl-sb-r2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drause\",\r\n \"name\": \"drause\",\r\n \"location\": \"australiasoutheast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/drtestnortheurg\",\r\n \"name\": \"drtestnortheurg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-eastasia\",\r\n \"name\": \"dstucki-rg-eastasia\",\r\n \"location\": \"eastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/dstucki-rg-usw\",\r\n \"name\": \"dstucki-rg-usw\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1332-rg\",\r\n \"name\": \"eh-dotnet-av-1332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1551-rg\",\r\n \"name\": \"eh-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1612-rg\",\r\n \"name\": \"eh-dotnet-av-1612-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1901-rg\",\r\n \"name\": \"eh-dotnet-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1922-rg\",\r\n \"name\": \"eh-dotnet-av-1922-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-1951-rg\",\r\n \"name\": \"eh-dotnet-av-1951-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2002-rg\",\r\n \"name\": \"eh-dotnet-av-2002-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2291-rg\",\r\n \"name\": \"eh-dotnet-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2302-rg\",\r\n \"name\": \"eh-dotnet-av-2302-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2311-rg\",\r\n \"name\": \"eh-dotnet-av-2311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2321-rg\",\r\n \"name\": \"eh-dotnet-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2351-rg\",\r\n \"name\": \"eh-dotnet-av-2351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2421-rg\",\r\n \"name\": \"eh-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2431-rg\",\r\n \"name\": \"eh-dotnet-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2461-rg\",\r\n \"name\": \"eh-dotnet-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2521-rg\",\r\n \"name\": \"eh-dotnet-av-2521-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2561-rg\",\r\n \"name\": \"eh-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2571-rg\",\r\n \"name\": \"eh-dotnet-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2601-rg\",\r\n \"name\": \"eh-dotnet-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2642-rg\",\r\n \"name\": \"eh-dotnet-av-2642-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-271-rg\",\r\n \"name\": \"eh-dotnet-av-271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2741-rg\",\r\n \"name\": \"eh-dotnet-av-2741-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2791-rg\",\r\n \"name\": \"eh-dotnet-av-2791-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2921-rg\",\r\n \"name\": \"eh-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-2961-rg\",\r\n \"name\": \"eh-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3291-rg\",\r\n \"name\": \"eh-dotnet-av-3291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-351-rg\",\r\n \"name\": \"eh-dotnet-av-351-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3561-rg\",\r\n \"name\": \"eh-dotnet-av-3561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3581-rg\",\r\n \"name\": \"eh-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-3811-rg\",\r\n \"name\": \"eh-dotnet-av-3811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4101-rg\",\r\n \"name\": \"eh-dotnet-av-4101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-411-rg\",\r\n \"name\": \"eh-dotnet-av-411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4141-rg\",\r\n \"name\": \"eh-dotnet-av-4141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4721-rg\",\r\n \"name\": \"eh-dotnet-av-4721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4731-rg\",\r\n \"name\": \"eh-dotnet-av-4731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4821-rg\",\r\n \"name\": \"eh-dotnet-av-4821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4831-rg\",\r\n \"name\": \"eh-dotnet-av-4831-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-4981-rg\",\r\n \"name\": \"eh-dotnet-av-4981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5041-rg\",\r\n \"name\": \"eh-dotnet-av-5041-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5051-rg\",\r\n \"name\": \"eh-dotnet-av-5051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5071-rg\",\r\n \"name\": \"eh-dotnet-av-5071-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5081-rg\",\r\n \"name\": \"eh-dotnet-av-5081-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5091-rg\",\r\n \"name\": \"eh-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5101-rg\",\r\n \"name\": \"eh-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5111-rg\",\r\n \"name\": \"eh-dotnet-av-5111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5121-rg\",\r\n \"name\": \"eh-dotnet-av-5121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5211-rg\",\r\n \"name\": \"eh-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5231-rg\",\r\n \"name\": \"eh-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5681-rg\",\r\n \"name\": \"eh-dotnet-av-5681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5701-rg\",\r\n \"name\": \"eh-dotnet-av-5701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5731-rg\",\r\n \"name\": \"eh-dotnet-av-5731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5751-rg\",\r\n \"name\": \"eh-dotnet-av-5751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5821-rg\",\r\n \"name\": \"eh-dotnet-av-5821-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5861-rg\",\r\n \"name\": \"eh-dotnet-av-5861-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5881-rg\",\r\n \"name\": \"eh-dotnet-av-5881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5941-rg\",\r\n \"name\": \"eh-dotnet-av-5941-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-5991-rg\",\r\n \"name\": \"eh-dotnet-av-5991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-602-rg\",\r\n \"name\": \"eh-dotnet-av-602-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-6051-rg\",\r\n \"name\": \"eh-dotnet-av-6051-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-611-rg\",\r\n \"name\": \"eh-dotnet-av-611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-6141-rg\",\r\n \"name\": \"eh-dotnet-av-6141-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-6161-rg\",\r\n \"name\": \"eh-dotnet-av-6161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-6171-rg\",\r\n \"name\": \"eh-dotnet-av-6171-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-691-rg\",\r\n \"name\": \"eh-dotnet-av-691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-82-rg\",\r\n \"name\": \"eh-dotnet-av-82-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eh-dotnet-av-991-rg\",\r\n \"name\": \"eh-dotnet-av-991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EH-SG\",\r\n \"name\": \"EH-SG\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehazonsf\",\r\n \"name\": \"ehazonsf\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ehuitest\",\r\n \"name\": \"ehuitest\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/elasticsearch-vm-01\",\r\n \"name\": \"elasticsearch-vm-01\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventgridtestfunctionapp\",\r\n \"name\": \"eventgridtestfunctionapp\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubClusterRG\",\r\n \"name\": \"EventHubClusterRG\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/EventHubGeoDRResourceGroup\",\r\n \"name\": \"EventHubGeoDRResourceGroup\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/eventhubs\",\r\n \"name\": \"eventhubs\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Flobbel\",\r\n \"name\": \"Flobbel\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoCloudServiceTests\",\r\n \"name\": \"FrancoCloudServiceTests\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/FrancoSpecialResourceGroup\",\r\n \"name\": \"FrancoSpecialResourceGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/functionApp123\",\r\n \"name\": \"functionApp123\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14\",\r\n \"name\": \"hagauagad14\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hagauagad14v2\",\r\n \"name\": \"hagauagad14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/hongubongud14v2\",\r\n \"name\": \"hongubongud14v2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ignitedemo\",\r\n \"name\": \"ignitedemo\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/javarbactests\",\r\n \"name\": \"javarbactests\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jobinp-test\",\r\n \"name\": \"jobinp-test\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-MSI-Test\",\r\n \"name\": \"jonl-MSI-Test\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/jonl-Testing\",\r\n \"name\": \"jonl-Testing\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustGroup\",\r\n \"name\": \"JustGroup\",\r\n \"location\": \"koreacentral\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustinRG\",\r\n \"name\": \"JustinRG\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/JustResources\",\r\n \"name\": \"JustResources\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/kakfagroup\",\r\n \"name\": \"kakfagroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/LuesbuebliResources\",\r\n \"name\": \"LuesbuebliResources\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/markushadapterworker\",\r\n \"name\": \"markushadapterworker\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/masrivas46971WestUS\",\r\n \"name\": \"masrivas46971WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Mobile-Default-Web-WestUS\",\r\n \"name\": \"Mobile-Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/MobileServices-WestUS\",\r\n \"name\": \"MobileServices-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mpark-store-app\",\r\n \"name\": \"mpark-store-app\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/myresourceGroup1\",\r\n \"name\": \"myresourceGroup1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/mysamplesvtest\",\r\n \"name\": \"mysamplesvtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/nemakamstd\",\r\n \"name\": \"nemakamstd\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/NetworkWatcherRG\",\r\n \"name\": \"NetworkWatcherRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/newVinsu\",\r\n \"name\": \"newVinsu\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk2920\",\r\n \"name\": \"onesdk2920\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/onesdk3077\",\r\n \"name\": \"onesdk3077\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/OrionSB-CSS-RG\",\r\n \"name\": \"OrionSB-CSS-RG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/perftest\",\r\n \"name\": \"perftest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/pk-dotnet-sample\",\r\n \"name\": \"pk-dotnet-sample\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-1626\",\r\n \"name\": \"PortalTesting-1626\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-3070\",\r\n \"name\": \"PortalTesting-3070\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-5684\",\r\n \"name\": \"PortalTesting-5684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-684\",\r\n \"name\": \"PortalTesting-684\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-8537\",\r\n \"name\": \"PortalTesting-8537\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTesting-9482\",\r\n \"name\": \"PortalTesting-9482\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PortalTestResources\",\r\n \"name\": \"PortalTestResources\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/powershellrg\",\r\n \"name\": \"powershellrg\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PPGTest\",\r\n \"name\": \"PPGTest\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PPGTestEHDNM\",\r\n \"name\": \"PPGTestEHDNM\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/PPGTestNew\",\r\n \"name\": \"PPGTestNew\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps1332\",\r\n \"name\": \"ps1332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps2820\",\r\n \"name\": \"ps2820\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps541\",\r\n \"name\": \"ps541\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps7794\",\r\n \"name\": \"ps7794\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps795\",\r\n \"name\": \"ps795\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps8534\",\r\n \"name\": \"ps8534\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps938\",\r\n \"name\": \"ps938\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9547\",\r\n \"name\": \"ps9547\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ps9767\",\r\n \"name\": \"ps9767\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeleted\",\r\n \"name\": \"RapscallionToBeDeleted\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RapscallionToBeDeletedLater\",\r\n \"name\": \"RapscallionToBeDeletedLater\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RelayAspNetCoreUnitTest\",\r\n \"name\": \"RelayAspNetCoreUnitTest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/relayrg\",\r\n \"name\": \"relayrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213172307\",\r\n \"name\": \"rg-webapp-171213172307\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-171213183840\",\r\n \"name\": \"rg-webapp-171213183840\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rg-webapp-180905092213\",\r\n \"name\": \"rg-webapp-180905092213\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-2119\",\r\n \"name\": \"RGName1-2119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-224\",\r\n \"name\": \"RGName1-224\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName1-8238\",\r\n \"name\": \"RGName1-8238\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-2819\",\r\n \"name\": \"RGName2-2819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-3762\",\r\n \"name\": \"RGName2-3762\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName2-6336\",\r\n \"name\": \"RGName2-6336\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName7961\",\r\n \"name\": \"RGName7961\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName8615\",\r\n \"name\": \"RGName8615\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-7293\",\r\n \"name\": \"RGName-7293\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-871\",\r\n \"name\": \"RGName-871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-9836\",\r\n \"name\": \"RGName-9836\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6194\",\r\n \"name\": \"RGName-ps6194\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps6694\",\r\n \"name\": \"RGName-ps6694\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RGName-ps8763\",\r\n \"name\": \"RGName-ps8763\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RichardTestGroup\",\r\n \"name\": \"RichardTestGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/rnrdemo\",\r\n \"name\": \"rnrdemo\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4178\",\r\n \"name\": \"RSG4178\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG4752\",\r\n \"name\": \"RSG4752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG6688\",\r\n \"name\": \"RSG6688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7181\",\r\n \"name\": \"RSG7181\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG7230\",\r\n \"name\": \"RSG7230\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8476\",\r\n \"name\": \"RSG8476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG850\",\r\n \"name\": \"RSG850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG8566\",\r\n \"name\": \"RSG8566\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/RSG9695\",\r\n \"name\": \"RSG9695\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1001-rg\",\r\n \"name\": \"sb-dotnet-av-1001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1111-rg\",\r\n \"name\": \"sb-dotnet-av-1111-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1131-rg\",\r\n \"name\": \"sb-dotnet-av-1131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1222-rg\",\r\n \"name\": \"sb-dotnet-av-1222-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1241-rg\",\r\n \"name\": \"sb-dotnet-av-1241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1401-rg\",\r\n \"name\": \"sb-dotnet-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1452-rg\",\r\n \"name\": \"sb-dotnet-av-1452-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1461-rg\",\r\n \"name\": \"sb-dotnet-av-1461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1471-rg\",\r\n \"name\": \"sb-dotnet-av-1471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1551-rg\",\r\n \"name\": \"sb-dotnet-av-1551-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-172-rg\",\r\n \"name\": \"sb-dotnet-av-172-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1751-rg\",\r\n \"name\": \"sb-dotnet-av-1751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1881-rg\",\r\n \"name\": \"sb-dotnet-av-1881-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1912-rg\",\r\n \"name\": \"sb-dotnet-av-1912-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-1981-rg\",\r\n \"name\": \"sb-dotnet-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2031-rg\",\r\n \"name\": \"sb-dotnet-av-2031-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2112-rg\",\r\n \"name\": \"sb-dotnet-av-2112-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2161-rg\",\r\n \"name\": \"sb-dotnet-av-2161-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-221-rg\",\r\n \"name\": \"sb-dotnet-av-221-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2322-rg\",\r\n \"name\": \"sb-dotnet-av-2322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2411-rg\",\r\n \"name\": \"sb-dotnet-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2421-rg\",\r\n \"name\": \"sb-dotnet-av-2421-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2441-rg\",\r\n \"name\": \"sb-dotnet-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2451-rg\",\r\n \"name\": \"sb-dotnet-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2531-rg\",\r\n \"name\": \"sb-dotnet-av-2531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2561-rg\",\r\n \"name\": \"sb-dotnet-av-2561-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2721-rg\",\r\n \"name\": \"sb-dotnet-av-2721-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2811-rg\",\r\n \"name\": \"sb-dotnet-av-2811-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2911-rg\",\r\n \"name\": \"sb-dotnet-av-2911-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2921-rg\",\r\n \"name\": \"sb-dotnet-av-2921-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-2961-rg\",\r\n \"name\": \"sb-dotnet-av-2961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-311-rg\",\r\n \"name\": \"sb-dotnet-av-311-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3211-rg\",\r\n \"name\": \"sb-dotnet-av-3211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3301-rg\",\r\n \"name\": \"sb-dotnet-av-3301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3321-rg\",\r\n \"name\": \"sb-dotnet-av-3321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3361-rg\",\r\n \"name\": \"sb-dotnet-av-3361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3381-rg\",\r\n \"name\": \"sb-dotnet-av-3381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3522-rg\",\r\n \"name\": \"sb-dotnet-av-3522-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3581-rg\",\r\n \"name\": \"sb-dotnet-av-3581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3611-rg\",\r\n \"name\": \"sb-dotnet-av-3611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-361-rg\",\r\n \"name\": \"sb-dotnet-av-361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3701-rg\",\r\n \"name\": \"sb-dotnet-av-3701-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-371-rg\",\r\n \"name\": \"sb-dotnet-av-371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3722-rg\",\r\n \"name\": \"sb-dotnet-av-3722-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3801-rg\",\r\n \"name\": \"sb-dotnet-av-3801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-3971-rg\",\r\n \"name\": \"sb-dotnet-av-3971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4061-rg\",\r\n \"name\": \"sb-dotnet-av-4061-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4322-rg\",\r\n \"name\": \"sb-dotnet-av-4322-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4332-rg\",\r\n \"name\": \"sb-dotnet-av-4332-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4342-rg\",\r\n \"name\": \"sb-dotnet-av-4342-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4362-rg\",\r\n \"name\": \"sb-dotnet-av-4362-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4381-rg\",\r\n \"name\": \"sb-dotnet-av-4381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4411-rg\",\r\n \"name\": \"sb-dotnet-av-4411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4441-rg\",\r\n \"name\": \"sb-dotnet-av-4441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4491-rg\",\r\n \"name\": \"sb-dotnet-av-4491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4511-rg\",\r\n \"name\": \"sb-dotnet-av-4511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4531-rg\",\r\n \"name\": \"sb-dotnet-av-4531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4571-rg\",\r\n \"name\": \"sb-dotnet-av-4571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4611-rg\",\r\n \"name\": \"sb-dotnet-av-4611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4631-rg\",\r\n \"name\": \"sb-dotnet-av-4631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4702-rg\",\r\n \"name\": \"sb-dotnet-av-4702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4781-rg\",\r\n \"name\": \"sb-dotnet-av-4781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4792-rg\",\r\n \"name\": \"sb-dotnet-av-4792-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4812-rg\",\r\n \"name\": \"sb-dotnet-av-4812-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-4822-rg\",\r\n \"name\": \"sb-dotnet-av-4822-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-501-rg\",\r\n \"name\": \"sb-dotnet-av-501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5091-rg\",\r\n \"name\": \"sb-dotnet-av-5091-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5101-rg\",\r\n \"name\": \"sb-dotnet-av-5101-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-511-rg\",\r\n \"name\": \"sb-dotnet-av-511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5131-rg\",\r\n \"name\": \"sb-dotnet-av-5131-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5211-rg\",\r\n \"name\": \"sb-dotnet-av-5211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-5231-rg\",\r\n \"name\": \"sb-dotnet-av-5231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-581-rg\",\r\n \"name\": \"sb-dotnet-av-581-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-601-rg\",\r\n \"name\": \"sb-dotnet-av-601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-631-rg\",\r\n \"name\": \"sb-dotnet-av-631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-671-rg\",\r\n \"name\": \"sb-dotnet-av-671-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-702-rg\",\r\n \"name\": \"sb-dotnet-av-702-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-711-rg\",\r\n \"name\": \"sb-dotnet-av-711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-761-rg\",\r\n \"name\": \"sb-dotnet-av-761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-781-rg\",\r\n \"name\": \"sb-dotnet-av-781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-801-rg\",\r\n \"name\": \"sb-dotnet-av-801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-871-rg\",\r\n \"name\": \"sb-dotnet-av-871-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-dotnet-av-981-rg\",\r\n \"name\": \"sb-dotnet-av-981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-10-rg\",\r\n \"name\": \"sb-java-av-10-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-121-rg\",\r\n \"name\": \"sb-java-av-121-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-12-rg\",\r\n \"name\": \"sb-java-av-12-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1371-rg\",\r\n \"name\": \"sb-java-av-1371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-13-rg\",\r\n \"name\": \"sb-java-av-13-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1401-rg\",\r\n \"name\": \"sb-java-av-1401-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-14-rg\",\r\n \"name\": \"sb-java-av-14-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1501-rg\",\r\n \"name\": \"sb-java-av-1501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1531-rg\",\r\n \"name\": \"sb-java-av-1531-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1541-rg\",\r\n \"name\": \"sb-java-av-1541-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-15-rg\",\r\n \"name\": \"sb-java-av-15-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-16-rg\",\r\n \"name\": \"sb-java-av-16-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-17-rg\",\r\n \"name\": \"sb-java-av-17-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-18-rg\",\r\n \"name\": \"sb-java-av-18-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1901-rg\",\r\n \"name\": \"sb-java-av-1901-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1961-rg\",\r\n \"name\": \"sb-java-av-1961-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1971-rg\",\r\n \"name\": \"sb-java-av-1971-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1981-rg\",\r\n \"name\": \"sb-java-av-1981-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-1991-rg\",\r\n \"name\": \"sb-java-av-1991-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-19-rg\",\r\n \"name\": \"sb-java-av-19-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2001-rg\",\r\n \"name\": \"sb-java-av-2001-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2011-rg\",\r\n \"name\": \"sb-java-av-2011-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-20-rg\",\r\n \"name\": \"sb-java-av-20-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2181-rg\",\r\n \"name\": \"sb-java-av-2181-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-21-rg\",\r\n \"name\": \"sb-java-av-21-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2211-rg\",\r\n \"name\": \"sb-java-av-2211-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2231-rg\",\r\n \"name\": \"sb-java-av-2231-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2241-rg\",\r\n \"name\": \"sb-java-av-2241-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2251-rg\",\r\n \"name\": \"sb-java-av-2251-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2261-rg\",\r\n \"name\": \"sb-java-av-2261-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2271-rg\",\r\n \"name\": \"sb-java-av-2271-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2281-rg\",\r\n \"name\": \"sb-java-av-2281-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2291-rg\",\r\n \"name\": \"sb-java-av-2291-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2301-rg\",\r\n \"name\": \"sb-java-av-2301-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2321-rg\",\r\n \"name\": \"sb-java-av-2321-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2331-rg\",\r\n \"name\": \"sb-java-av-2331-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2361-rg\",\r\n \"name\": \"sb-java-av-2361-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2371-rg\",\r\n \"name\": \"sb-java-av-2371-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2381-rg\",\r\n \"name\": \"sb-java-av-2381-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2391-rg\",\r\n \"name\": \"sb-java-av-2391-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2411-rg\",\r\n \"name\": \"sb-java-av-2411-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2431-rg\",\r\n \"name\": \"sb-java-av-2431-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2441-rg\",\r\n \"name\": \"sb-java-av-2441-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2451-rg\",\r\n \"name\": \"sb-java-av-2451-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2461-rg\",\r\n \"name\": \"sb-java-av-2461-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2471-rg\",\r\n \"name\": \"sb-java-av-2471-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2491-rg\",\r\n \"name\": \"sb-java-av-2491-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2501-rg\",\r\n \"name\": \"sb-java-av-2501-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2511-rg\",\r\n \"name\": \"sb-java-av-2511-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2571-rg\",\r\n \"name\": \"sb-java-av-2571-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2591-rg\",\r\n \"name\": \"sb-java-av-2591-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2601-rg\",\r\n \"name\": \"sb-java-av-2601-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2611-rg\",\r\n \"name\": \"sb-java-av-2611-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2631-rg\",\r\n \"name\": \"sb-java-av-2631-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2641-rg\",\r\n \"name\": \"sb-java-av-2641-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2651-rg\",\r\n \"name\": \"sb-java-av-2651-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2661-rg\",\r\n \"name\": \"sb-java-av-2661-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2681-rg\",\r\n \"name\": \"sb-java-av-2681-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2691-rg\",\r\n \"name\": \"sb-java-av-2691-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2711-rg\",\r\n \"name\": \"sb-java-av-2711-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2731-rg\",\r\n \"name\": \"sb-java-av-2731-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2751-rg\",\r\n \"name\": \"sb-java-av-2751-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2761-rg\",\r\n \"name\": \"sb-java-av-2761-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2781-rg\",\r\n \"name\": \"sb-java-av-2781-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-2801-rg\",\r\n \"name\": \"sb-java-av-2801-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-30-rg\",\r\n \"name\": \"sb-java-av-30-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-31-rg\",\r\n \"name\": \"sb-java-av-31-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-41-rg\",\r\n \"name\": \"sb-java-av-41-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-42-rg\",\r\n \"name\": \"sb-java-av-42-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-44-rg\",\r\n \"name\": \"sb-java-av-44-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-61-rg\",\r\n \"name\": \"sb-java-av-61-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-71-rg\",\r\n \"name\": \"sb-java-av-71-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sb-java-av-771-rg\",\r\n \"name\": \"sb-java-av-771-rg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit\",\r\n \"name\": \"sbcit\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/sbcit2\",\r\n \"name\": \"sbcit2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SBServerTest\",\r\n \"name\": \"SBServerTest\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SecretsDaylight\",\r\n \"name\": \"SecretsDaylight\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ServiceBusInfrastructure\",\r\n \"name\": \"ServiceBusInfrastructure\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SFClusterTest\",\r\n \"name\": \"SFClusterTest\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnadsrg\",\r\n \"name\": \"skulkarnadsrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnLBrg\",\r\n \"name\": \"skulkarnLBrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnrg\",\r\n \"name\": \"skulkarnrg\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvmssrg\",\r\n \"name\": \"skulkarnvmssrg\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/skulkarnvnettestrg\",\r\n \"name\": \"skulkarnvnettestrg\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/someResourceGroup\",\r\n \"name\": \"someResourceGroup\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-Central-US\",\r\n \"name\": \"StreamAnalytics-Default-Central-US\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/StreamAnalytics-Default-East-US-2\",\r\n \"name\": \"StreamAnalytics-Default-East-US-2\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/SunnyTestingResGrp\",\r\n \"name\": \"SunnyTestingResGrp\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tauTest\",\r\n \"name\": \"tauTest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Test\",\r\n \"name\": \"Test\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test1\",\r\n \"name\": \"test1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-resource-group\",\r\n \"name\": \"test-resource-group\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-sb\",\r\n \"name\": \"test-sb\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-service-bus-brian-liu\",\r\n \"name\": \"test-service-bus-brian-liu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-svcbus\",\r\n \"name\": \"test-svcbus\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test-vnet-bailiu\",\r\n \"name\": \"test-vnet-bailiu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"name\": \"test_azure_mgmt_servicebus_namespace1_test_sb_curd124bc1492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testarchivesv\",\r\n \"name\": \"testarchivesv\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestCompatibility\",\r\n \"name\": \"TestCompatibility\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testeh-delete\",\r\n \"name\": \"testeh-delete\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestingCLIAlternateName1\",\r\n \"name\": \"TestingCLIAlternateName1\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testNet\",\r\n \"name\": \"testNet\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testone\",\r\n \"name\": \"testone\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestPPG\",\r\n \"name\": \"TestPPG\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestPPG0225\",\r\n \"name\": \"TestPPG0225\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TestResourceGroup\",\r\n \"name\": \"TestResourceGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testtest\",\r\n \"name\": \"testtest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu\",\r\n \"name\": \"testvinsu\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsu27\",\r\n \"name\": \"testvinsu27\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsucentralus\",\r\n \"name\": \"testvinsucentralus\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsurgjapaneast\",\r\n \"name\": \"testvinsurgjapaneast\",\r\n \"location\": \"japaneast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsusouthcentral\",\r\n \"name\": \"testvinsusouthcentral\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/testvinsuwestus\",\r\n \"name\": \"testvinsuwestus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/TwitterGroup\",\r\n \"name\": \"TwitterGroup\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/tést\",\r\n \"name\": \"tést\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/v-ajnavtest\",\r\n \"name\": \"v-ajnavtest\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijayjavaclient\",\r\n \"name\": \"vijayjavaclient\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vijaypremiumjavaclienttests\",\r\n \"name\": \"vijaypremiumjavaclienttests\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinaytest\",\r\n \"name\": \"vinaytest\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu\",\r\n \"name\": \"vinsu\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsu221\",\r\n \"name\": \"vinsu221\",\r\n \"location\": \"northeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsuqueuereader\",\r\n \"name\": \"vinsuqueuereader\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/VINSUSVR2\",\r\n \"name\": \"VINSUSVR2\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest\",\r\n \"name\": \"vinsutest\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutest15\",\r\n \"name\": \"vinsutest15\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vinsutestgrp\",\r\n \"name\": \"vinsutestgrp\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/vnetserunner\",\r\n \"name\": \"vnetserunner\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/zrstestams\",\r\n \"name\": \"zrstestams\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/ägroup\",\r\n \"name\": \"ägroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367\",\r\n \"name\": \"Default-EventHub-367\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTIwNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8215809d-4d3d-4bf4-b399-c0efdb9f06ac" + "15c6d86e-95a3-421a-836d-e59afc9e9aeb" ], "accept-language": [ "en-US" @@ -135,8 +141,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,29 +156,29 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:38:12 GMT" + "Mon, 11 May 2020 07:17:14 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7b12f24f-e7fc-4a8d-b6da-422d44b45906_M10CH3_M10CH3" + "d91e2af5-21ac-479a-82cb-14189e4bdffa_M7SN1_M7SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "bf66b4be-6172-4362-b602-f17376d34803" + "56b4e48c-b825-43eb-ad13-4b2052a3127e" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023813Z:bf66b4be-6172-4362-b602-f17376d34803" + "WESTUS:20200511T071714Z:56b4e48c-b825-43eb-ad13-4b2052a3127e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -181,7 +187,7 @@ "nosniff" ], "Content-Length": [ - "727" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -190,20 +196,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637\",\r\n \"name\": \"sdk-Namespace-6637\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-6637\",\r\n \"createdAt\": \"2019-03-26T02:38:12.03Z\",\r\n \"updatedAt\": \"2019-03-26T02:38:12.03Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6637.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207\",\r\n \"name\": \"sdk-NS-9207\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9207\",\r\n \"createdAt\": \"2020-05-11T07:17:13.66Z\",\r\n \"updatedAt\": \"2020-05-11T07:17:13.66Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9207.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTIwNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -211,29 +217,29 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:38:43 GMT" + "Mon, 11 May 2020 07:17:50 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "7e206b7d-2683-4698-ac5c-cf183ff0805c_M4CH3_M4CH3" + "cf200bb3-4fed-4f32-ad44-aba2cc8b1935_M4SN1_M4SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "6293a877-f8a3-4cc7-b534-daa3a6eba73c" + "2f6b8dae-3dfb-4f87-a7c1-d5a4a7842463" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023843Z:6293a877-f8a3-4cc7-b534-daa3a6eba73c" + "WESTUS:20200511T071751Z:2f6b8dae-3dfb-4f87-a7c1-d5a4a7842463" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,7 +248,7 @@ "nosniff" ], "Content-Length": [ - "726" + "708" ], "Content-Type": [ "application/json; charset=utf-8" @@ -251,26 +257,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637\",\r\n \"name\": \"sdk-Namespace-6637\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-6637\",\r\n \"createdAt\": \"2019-03-26T02:38:12.03Z\",\r\n \"updatedAt\": \"2019-03-26T02:38:42.317Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6637.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207\",\r\n \"name\": \"sdk-NS-9207\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Created\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9207\",\r\n \"createdAt\": \"2020-05-11T07:17:13.66Z\",\r\n \"updatedAt\": \"2020-05-11T07:17:13.66Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9207.servicebus.windows.net:443/\",\r\n \"status\": \"Activating\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTIwNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "151d0e70-21a9-419b-bec7-abcc3e4626cc" - ], - "accept-language": [ - "en-US" - ], "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -278,29 +278,29 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:38:48 GMT" + "Mon, 11 May 2020 07:18:20 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ddab5857-3b2a-41bd-b5f5-bbf54d026df6_M4CH3_M4CH3" + "66dd1e77-56ac-4f5d-8adf-8a2c69099085_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], "x-ms-correlation-request-id": [ - "9f2a9804-d904-4d18-aa98-f207ee34308b" + "afd08d6c-f702-45e3-be7b-c47af7779f08" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023848Z:9f2a9804-d904-4d18-aa98-f207ee34308b" + "WESTUS:20200511T071821Z:afd08d6c-f702-45e3-be7b-c47af7779f08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -309,7 +309,7 @@ "nosniff" ], "Content-Length": [ - "726" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,17 +318,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637\",\r\n \"name\": \"sdk-Namespace-6637\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-6637\",\r\n \"createdAt\": \"2019-03-26T02:38:12.03Z\",\r\n \"updatedAt\": \"2019-03-26T02:38:42.317Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6637.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207\",\r\n \"name\": \"sdk-NS-9207\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9207\",\r\n \"createdAt\": \"2020-05-11T07:17:13.66Z\",\r\n \"updatedAt\": \"2020-05-11T07:18:10.573Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9207.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTIwNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a15519b-976d-4cd4-8dd1-589bda1f63fc" + "f18d50ae-e83c-418d-9ae3-dc3ca4030ec5" ], "accept-language": [ "en-US" @@ -336,8 +336,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -345,29 +345,29 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:38:48 GMT" + "Mon, 11 May 2020 07:18:25 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "1bff3cbd-fac1-434e-9421-c4c70b622238_M4CH3_M4CH3" + "46e9acf8-58c6-4616-b393-aec0a1c4b515_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], "x-ms-correlation-request-id": [ - "00f4cb2d-8288-40a6-80a9-069b8812c541" + "e39f65c4-e036-4608-8095-67a84e71ea52" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023848Z:00f4cb2d-8288-40a6-80a9-069b8812c541" + "WESTUS:20200511T071826Z:e39f65c4-e036-4608-8095-67a84e71ea52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,7 +376,7 @@ "nosniff" ], "Content-Length": [ - "726" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -385,17 +385,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637\",\r\n \"name\": \"sdk-Namespace-6637\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"854d368f-1828-428f-8f3c-f2affa9b2f7d:sdk-namespace-6637\",\r\n \"createdAt\": \"2019-03-26T02:38:12.03Z\",\r\n \"updatedAt\": \"2019-03-26T02:38:42.317Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-Namespace-6637.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207\",\r\n \"name\": \"sdk-NS-9207\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9207\",\r\n \"createdAt\": \"2020-05-11T07:17:13.66Z\",\r\n \"updatedAt\": \"2020-05-11T07:18:10.573Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9207.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/networkRuleSets/default?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2MzcvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.3\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.4\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.5\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTIwNz9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cb2d798-40e1-420f-8df5-65133da3fcd1" + "95d1c4da-2321-4f0b-b74a-59cbc167a3d1" ], "accept-language": [ "en-US" @@ -403,14 +403,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1329" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -418,29 +412,29 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:39:11 GMT" + "Mon, 11 May 2020 07:18:25 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "17d7721e-f190-4571-b9ea-e70373d2afc0_M11CH3_M11CH3" + "d8141755-ec75-4cfe-b2d5-3b10e936ee17_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-correlation-request-id": [ - "bba6de10-7fc0-4aad-9b48-e41c3dc956a1" + "0b074dd6-b933-4360-8ad3-223c78ec20b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023912Z:bba6de10-7fc0-4aad-9b48-e41c3dc956a1" + "WESTUS:20200511T071826Z:0b074dd6-b933-4360-8ad3-223c78ec20b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -449,7 +443,7 @@ "nosniff" ], "Content-Length": [ - "1201" + "707" ], "Content-Type": [ "application/json; charset=utf-8" @@ -458,17 +452,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSet\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.3\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.4\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.5\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207\",\r\n \"name\": \"sdk-NS-9207\",\r\n \"type\": \"Microsoft.EventHub/Namespaces\",\r\n \"location\": \"Australia East\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\"\r\n },\r\n \"properties\": {\r\n \"zoneRedundant\": false,\r\n \"isAutoInflateEnabled\": false,\r\n \"maximumThroughputUnits\": 0,\r\n \"kafkaEnabled\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"metricId\": \"326100e2-f69d-4268-8503-075374f62b6e:sdk-ns-9207\",\r\n \"createdAt\": \"2020-05-11T07:17:13.66Z\",\r\n \"updatedAt\": \"2020-05-11T07:18:10.573Z\",\r\n \"serviceBusEndpoint\": \"https://sdk-NS-9207.servicebus.windows.net:443/\",\r\n \"status\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/networkRuleSets/default?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2MzcvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTIwNy9uZXR3b3JrUnVsZVNldHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Allow\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.3\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.4\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.5\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6922e6f1-e5a7-4284-b98c-5be62cf666ae" + "8afd55d1-7113-4461-ae5c-a45dad89b756" ], "accept-language": [ "en-US" @@ -476,14 +470,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "58" + "1329" ] }, "ResponseHeaders": { @@ -491,29 +485,29 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:39:29 GMT" + "Mon, 11 May 2020 07:18:39 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "630bf558-ecd8-4012-a134-cd061524d08d_M0CH3_M0CH3" + "b99a9017-0645-4074-be65-c74adb4774b0_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "0c065939-7c26-4676-b600-d2e268830449" + "c2605d66-234e-4808-b6f9-b1dd49a46046" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023929Z:0c065939-7c26-4676-b600-d2e268830449" + "WESTUS:20200511T071839Z:c2605d66-234e-4808-b6f9-b1dd49a46046" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -522,7 +516,7 @@ "nosniff" ], "Content-Length": [ - "367" + "1183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -531,17 +525,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSet\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.3\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.4\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.5\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/networkRuleSets/default?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2MzcvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTIwNy9uZXR3b3JrUnVsZVNldHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"defaultAction\": \"Allow\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7b2f4d77-2be2-490d-8903-d7a7e74b5631" + "570742e2-e926-4628-987d-cace79e0546a" ], "accept-language": [ "en-US" @@ -549,8 +543,14 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "58" ] }, "ResponseHeaders": { @@ -558,29 +558,29 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:39:12 GMT" + "Mon, 11 May 2020 07:18:47 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "adb537c6-8cd4-4c4a-926e-bd830b0a2e68_M11CH3_M11CH3" + "0af8b6c1-13fd-44a0-9772-92ec92ac0ca1_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "aa96a066-f0f3-4a32-9d7f-563909caf997" + "c6ce7d1d-fd8f-4886-810b-fbe4be2e2ea7" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023913Z:aa96a066-f0f3-4a32-9d7f-563909caf997" + "WESTUS:20200511T071847Z:c6ce7d1d-fd8f-4886-810b-fbe4be2e2ea7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -589,7 +589,7 @@ "nosniff" ], "Content-Length": [ - "1201" + "349" ], "Content-Type": [ "application/json; charset=utf-8" @@ -598,17 +598,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSet\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.3\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.4\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.5\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/networkRuleSets/default?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2MzcvbmV0d29ya1J1bGVTZXRzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTIwNy9uZXR3b3JrUnVsZVNldHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c54b938a-6925-4015-8e0f-c9e45bc18d92" + "715fbf93-37ab-404e-a7b3-662b7a9f6788" ], "accept-language": [ "en-US" @@ -616,8 +616,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -625,29 +625,29 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:39:29 GMT" + "Mon, 11 May 2020 07:18:40 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "ab446ef7-717f-4f71-a410-f30568f6c911_M0CH3_M0CH3" + "ca4620ec-9857-4f5d-9339-0590b8d70cba_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-correlation-request-id": [ - "b0233110-f8fc-45e3-960c-0b87161a1e87" + "f0abedc5-3c79-4851-8419-4d55dec5b9ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T023930Z:b0233110-f8fc-45e3-960c-0b87161a1e87" + "WESTUS:20200511T071840Z:f0abedc5-3c79-4851-8419-4d55dec5b9ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -656,7 +656,7 @@ "nosniff" ], "Content-Length": [ - "367" + "1183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -665,17 +665,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSet\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"defaultAction\": \"Deny\",\r\n \"virtualNetworkRules\": [\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": true\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n },\r\n {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01\"\r\n },\r\n \"ignoreMissingVnetServiceEndpoint\": false\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"ipMask\": \"1.1.1.1\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.2\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.3\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.4\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"ipMask\": \"1.1.1.5\",\r\n \"action\": \"Allow\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207/networkRuleSets/default?api-version=2018-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMzI2MTAwZTItZjY5ZC00MjY4LTg1MDMtMDc1Mzc0ZjYyYjZlL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtRXZlbnRIdWItMzY3L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTlMtOTIwNy9uZXR3b3JrUnVsZVNldHMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ecc9b06-73bc-4032-9cc4-4ff0e19cebed" + "fe85f37d-fd97-4ad5-938c-2af47385e450" ], "accept-language": [ "en-US" @@ -683,69 +683,8 @@ "User-Agent": [ "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Mar 2019 02:39:36 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/operationresults/sdk-Namespace-6637?api-version=2017-04-01" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "79b8e606-341d-4a1d-aa57-64da6f3e02a5_M6CH3_M6CH3" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "abf87ccc-4cee-4485-8a5d-b902e06f1acb" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190326T023937Z:abf87ccc-4cee-4485-8a5d-b902e06f1acb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/operationresults/sdk-Namespace-6637?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2Mzcvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTY2Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.5.0.0" ] }, "ResponseHeaders": { @@ -753,29 +692,29 @@ "no-cache" ], "Date": [ - "Tue, 26 Mar 2019 02:40:07 GMT" + "Mon, 11 May 2020 07:18:47 GMT" ], "Pragma": [ "no-cache" ], "Server": [ - "Service-Bus-Resource-Provider/CH3", + "Service-Bus-Resource-Provider/SN1", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-id": [ - "c4808c64-a397-4a70-9324-ddb93fe258d9_M6CH3_M6CH3" + "26002ec2-4296-4323-a51b-746781ba16d6_M0SN1_M0SN1" ], "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" + "Service-Bus-Resource-Provider/SN1" ], "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], "x-ms-correlation-request-id": [ - "dbbbc214-d081-4345-9187-5e4463efd542" + "da1315bf-4fa3-4c83-bb2e-ebca0746978d" ], "x-ms-routing-request-id": [ - "WESTUS2:20190326T024007Z:dbbbc214-d081-4345-9187-5e4463efd542" + "WESTUS:20200511T071847Z:da1315bf-4fa3-4c83-bb2e-ebca0746978d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -784,80 +723,26 @@ "nosniff" ], "Content-Length": [ - "0" + "349" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/854d368f-1828-428f-8f3c-f2affa9b2f7d/resourceGroups/Default-ServiceBus-AustraliaEast/providers/Microsoft.EventHub/namespaces/sdk-Namespace-6637/operationresults/sdk-Namespace-6637?api-version=2017-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvODU0ZDM2OGYtMTgyOC00MjhmLThmM2MtZjJhZmZhOWIyZjdkL3Jlc291cmNlR3JvdXBzL0RlZmF1bHQtU2VydmljZUJ1cy1BdXN0cmFsaWFFYXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuRXZlbnRIdWIvbmFtZXNwYWNlcy9zZGstTmFtZXNwYWNlLTY2Mzcvb3BlcmF0aW9ucmVzdWx0cy9zZGstTmFtZXNwYWNlLTY2Mzc/YXBpLXZlcnNpb249MjAxNy0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26614.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.EventHub.EventHubManagementClient/2.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Tue, 26 Mar 2019 02:40:07 GMT" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Service-Bus-Resource-Provider/CH3", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-request-id": [ - "c5618d27-5324-43cb-99c1-a119ac48fac8_M6CH3_M6CH3" - ], - "Server-SB": [ - "Service-Bus-Resource-Provider/CH3" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "43cfcb5b-048b-4ad9-a6ad-88a512d0d933" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20190326T024007Z:43cfcb5b-048b-4ad9-a6ad-88a512d0d933" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/Default-EventHub-367/providers/Microsoft.EventHub/namespaces/sdk-NS-9207/networkRuleSets/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.EventHub/Namespaces/NetworkRuleSets\",\r\n \"location\": \"Australia East\",\r\n \"properties\": {\r\n \"defaultAction\": \"Allow\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": []\r\n }\r\n}", "StatusCode": 200 } ], "Names": { "NetworkRuleSetCreateGetUpdateDelete": [ - "sdk-Namespace-6637" + "Default-EventHub-367", + "sdk-NS-9207" ] }, "Variables": { - "SubscriptionId": "854d368f-1828-428f-8f3c-f2affa9b2f7d" + "SubscriptionId": "326100e2-f69d-4268-8503-075374f62b6e" } } \ No newline at end of file diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/TestHelper/EventHubManagementHelper.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/TestHelper/EventHubManagementHelper.cs index ed4e2e648953..dac41f1c2016 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/TestHelper/EventHubManagementHelper.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/TestHelper/EventHubManagementHelper.cs @@ -10,6 +10,8 @@ namespace EventHub.Tests.TestHelper using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Management.Resources.Models; + using Microsoft.Azure.Management.KeyVault; + using Microsoft.Azure.Management.KeyVault.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Newtonsoft.Json; using System.Security.Cryptography; @@ -21,12 +23,16 @@ namespace EventHub.Tests.TestHelper public static class EventHubManagementHelper { internal const string ResourceGroupPrefix = "Default-EventHub-"; - internal const string NamespacePrefix = "sdk-Namespace-"; + internal const string NamespacePrefix = "sdk-NS-"; internal const string AuthorizationRulesPrefix = "sdk-Authrules-"; internal const string DefaultNamespaceAuthorizationRule = "RootManageSharedAccessKey"; internal const string EventHubPrefix = "sdk-EventHub-"; internal const string ConsumerGroupPrefix = "sdk-ConsumerGroup-"; internal const string DisasterRecoveryPrefix = "sdk-DisasterRecovery-"; + internal const string KeyVaultePrefix = "sdk-KeyVault-"; + + internal const string ResourceGroupCluster = "prod-by3-533-rg"; + internal const string TestClusterName = "PMTestCluster"; public static EventHubManagementClient GetEventHubManagementClient(MockContext context, RecordedDelegatingHandler handler) @@ -35,11 +41,25 @@ public static EventHubManagementClient GetEventHubManagementClient(MockContext c { handler.IsPassThrough = true; EventHubManagementClient nhManagementClient = context.GetServiceClient(handlers: handler); + return nhManagementClient; } return null; } + + + public static KeyVaultManagementClient GetKeyVaultManagementClient(MockContext context, RecordedDelegatingHandler handler) + { + if (handler != null) + { + handler.IsPassThrough = true; + KeyVaultManagementClient keyValutManagementClient = context.GetServiceClient(handlers: handler); + return keyValutManagementClient; + } + + return null; + } public static ResourceManagementClient GetResourceManagementClient(MockContext context, RecordedDelegatingHandler handler) { diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/TestHelper/ExceptionHelper.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/TestHelper/ExceptionHelper.cs new file mode 100644 index 000000000000..c24fe3cb7d3b --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/TestHelper/ExceptionHelper.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace EventHub.Tests.ScenarioTests +{ + using System.Collections.Generic; + using Microsoft.Azure.Management.EventHub; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using TestHelper; + using Xunit; + using Microsoft.Azure.Management.EventHub.Models; + + public partial class ScenarioTests + { + internal void DisplayExceptionDetails(ErrorResponseException ex) + { + throw new Exception(string.Format("Status Code : {0}, Responsecontent: {1}", ex.Response.StatusCode.ToString(), ex.Response.Content.ToString())); + } + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.ConsumergroupsTests.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.ConsumergroupsTests.CRUD.cs index 617f0f092d86..67909aa5c559 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.ConsumergroupsTests.CRUD.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.ConsumergroupsTests.CRUD.cs @@ -8,6 +8,7 @@ namespace EventHub.Tests.ScenarioTests using System.Collections.Generic; using System.Linq; using System.Net; + using System.Threading; using Microsoft.Azure.Management.EventHub; using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Rest.Azure; @@ -25,7 +26,7 @@ public void ConsumerGroupsCreateGetUpdateDelete() var location = this.ResourceManagementClient.GetLocationFromProvider(); - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -33,7 +34,9 @@ public void ConsumerGroupsCreateGetUpdateDelete() } var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + try + { + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, new EHNamespace() { Location = location, @@ -49,64 +52,71 @@ public void ConsumerGroupsCreateGetUpdateDelete() } }); - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Create Eventhub - var eventhubName = TestUtilities.GenerateName(EventHubManagementHelper.EventHubPrefix); + // Create Eventhub + var eventhubName = TestUtilities.GenerateName(EventHubManagementHelper.EventHubPrefix); - var createEventhubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, - new Eventhub() { MessageRetentionInDays = 5 }); + var createEventhubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, + new Eventhub() { MessageRetentionInDays = 5 }); - Assert.NotNull(createEventhubResponse); - Assert.Equal(createEventhubResponse.Name, eventhubName); + Assert.NotNull(createEventhubResponse); + Assert.Equal(createEventhubResponse.Name, eventhubName); - //Get the created EventHub - var geteventhubResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(geteventhubResponse); - Assert.Equal(EntityStatus.Active, geteventhubResponse.Status); - Assert.Equal(geteventhubResponse.Name, eventhubName); + //Get the created EventHub + var geteventhubResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(geteventhubResponse); + Assert.Equal(EntityStatus.Active, geteventhubResponse.Status); + Assert.Equal(geteventhubResponse.Name, eventhubName); - // Create ConsumerGroup. - var consumergroupName = TestUtilities.GenerateName(EventHubManagementHelper.ConsumerGroupPrefix); - string UserMetadata = "Newly Created"; - var createConsumergroupResponse = EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, consumergroupName, new ConsumerGroup { UserMetadata = UserMetadata}); - Assert.NotNull(createConsumergroupResponse); - Assert.Equal(createConsumergroupResponse.Name, consumergroupName); + // Create ConsumerGroup. + var consumergroupName = TestUtilities.GenerateName(EventHubManagementHelper.ConsumerGroupPrefix); + string UserMetadata = "Newly Created"; + var createConsumergroupResponse = EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, consumergroupName, new ConsumerGroup { UserMetadata = UserMetadata }); + Assert.NotNull(createConsumergroupResponse); + Assert.Equal(createConsumergroupResponse.Name, consumergroupName); - // Get Created ConsumerGroup - var getConsumergroupGetResponse = EventHubManagementClient.ConsumerGroups.Get(resourceGroup, namespaceName, eventhubName, consumergroupName); - Assert.NotNull(getConsumergroupGetResponse); - Assert.Equal(getConsumergroupGetResponse.Name, consumergroupName); + // Get Created ConsumerGroup + var getConsumergroupGetResponse = EventHubManagementClient.ConsumerGroups.Get(resourceGroup, namespaceName, eventhubName, consumergroupName); + Assert.NotNull(getConsumergroupGetResponse); + Assert.Equal(getConsumergroupGetResponse.Name, consumergroupName); - // Get all ConsumerGroup - var getSubscriptionsListAllResponse = EventHubManagementClient.ConsumerGroups.ListByEventHub(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(getSubscriptionsListAllResponse); - Assert.True(getSubscriptionsListAllResponse.All(ns => ns.Id.Contains(resourceGroup))); + // Get all ConsumerGroup + var getSubscriptionsListAllResponse = EventHubManagementClient.ConsumerGroups.ListByEventHub(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(getSubscriptionsListAllResponse); + Assert.True(getSubscriptionsListAllResponse.All(ns => ns.Id.Contains(resourceGroup))); - //Update the Created consumergroup - createConsumergroupResponse.UserMetadata = "Updated the user meta data"; - var updateconsumergroupResponse = EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, consumergroupName, createConsumergroupResponse); - Assert.NotNull(updateconsumergroupResponse); - Assert.Equal(updateconsumergroupResponse.Name, createConsumergroupResponse.Name); - Assert.Equal("Updated the user meta data", updateconsumergroupResponse.UserMetadata); + //Update the Created consumergroup + createConsumergroupResponse.UserMetadata = "Updated the user meta data"; + var updateconsumergroupResponse = EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, consumergroupName, createConsumergroupResponse); + Assert.NotNull(updateconsumergroupResponse); + Assert.Equal(updateconsumergroupResponse.Name, createConsumergroupResponse.Name); + Assert.Equal("Updated the user meta data", updateconsumergroupResponse.UserMetadata); - // Get Created ConsumerGroup - var getConsumergroupResponse = EventHubManagementClient.ConsumerGroups.Get(resourceGroup, namespaceName, eventhubName, consumergroupName); - Assert.NotNull(getConsumergroupResponse); - Assert.Equal(getConsumergroupResponse.Name, consumergroupName); - Assert.Equal(getConsumergroupResponse.UserMetadata, updateconsumergroupResponse.UserMetadata); + // Get Created ConsumerGroup + var getConsumergroupResponse = EventHubManagementClient.ConsumerGroups.Get(resourceGroup, namespaceName, eventhubName, consumergroupName); + Assert.NotNull(getConsumergroupResponse); + Assert.Equal(getConsumergroupResponse.Name, consumergroupName); + Assert.Equal(getConsumergroupResponse.UserMetadata, updateconsumergroupResponse.UserMetadata); - // Delete Created ConsumerGroup and check for the NotFound exception - EventHubManagementClient.ConsumerGroups.Delete(resourceGroup, namespaceName, eventhubName, consumergroupName); + // Delete Created ConsumerGroup and check for the NotFound exception + EventHubManagementClient.ConsumerGroups.Delete(resourceGroup, namespaceName, eventhubName, consumergroupName); - // Delete Created EventHub and check for the NotFound exception - EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); + // Delete Created EventHub and check for the NotFound exception + EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); - // Delete namespace - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + // Delete namespace + EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + finally + { + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); + } //Subscription end } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.ConsumergroupsTests.CRUD_Length.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.ConsumergroupsTests.CRUD_Length.cs index ae13a9f7dabb..bd42b7b19a0c 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.ConsumergroupsTests.CRUD_Length.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.ConsumergroupsTests.CRUD_Length.cs @@ -8,6 +8,7 @@ namespace EventHub.Tests.ScenarioTests using System.Collections.Generic; using System.Linq; using System.Net; + using System.Threading; using Microsoft.Azure.Management.EventHub; using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Rest.Azure; @@ -25,7 +26,7 @@ public void ConsumerGroupsCreateGetUpdateDelete_Length() var location = this.ResourceManagementClient.GetLocationFromProvider(); - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -33,7 +34,10 @@ public void ConsumerGroupsCreateGetUpdateDelete_Length() } var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + + try + { + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, new EHNamespace() { Location = location, @@ -49,64 +53,69 @@ public void ConsumerGroupsCreateGetUpdateDelete_Length() } }); - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); - - TestUtilities.Wait(TimeSpan.FromSeconds(5)); - - // Create Eventhub - var eventhubName = EventHubManagementHelper.EventHubPrefix + "thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit"; - - var createEventhubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, - new Eventhub() { MessageRetentionInDays = 5 }); - - Assert.NotNull(createEventhubResponse); - Assert.Equal(createEventhubResponse.Name, eventhubName); - - //Get the created EventHub - var geteventhubResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(geteventhubResponse); - Assert.Equal(EntityStatus.Active, geteventhubResponse.Status); - Assert.Equal(geteventhubResponse.Name, eventhubName); - - // Create ConsumerGroup. - var consumergroupName = "thisisthenamewithmorethan53charschecktoverifqwert"; - string UserMetadata = "Newly Created"; - var createConsumergroupResponse = EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, consumergroupName, new ConsumerGroup { UserMetadata = UserMetadata}); - Assert.NotNull(createConsumergroupResponse); - Assert.Equal(createConsumergroupResponse.Name, consumergroupName); - - // Get Created ConsumerGroup - var getConsumergroupGetResponse = EventHubManagementClient.ConsumerGroups.Get(resourceGroup, namespaceName, eventhubName, consumergroupName); - Assert.NotNull(getConsumergroupGetResponse); - Assert.Equal(getConsumergroupGetResponse.Name, consumergroupName); - - // Get all ConsumerGroup - var getSubscriptionsListAllResponse = EventHubManagementClient.ConsumerGroups.ListByEventHub(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(getSubscriptionsListAllResponse); - Assert.True(getSubscriptionsListAllResponse.All(ns => ns.Id.Contains(resourceGroup))); - - //Update the Created consumergroup - createConsumergroupResponse.UserMetadata = "Updated the user meta data"; - var updateconsumergroupResponse = EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, consumergroupName, createConsumergroupResponse); - Assert.NotNull(updateconsumergroupResponse); - Assert.Equal(updateconsumergroupResponse.Name, createConsumergroupResponse.Name); - Assert.Equal("Updated the user meta data", updateconsumergroupResponse.UserMetadata); - - // Get Created ConsumerGroup - var getConsumergroupResponse = EventHubManagementClient.ConsumerGroups.Get(resourceGroup, namespaceName, eventhubName, consumergroupName); - Assert.NotNull(getConsumergroupResponse); - Assert.Equal(getConsumergroupResponse.Name, consumergroupName); - Assert.Equal(getConsumergroupResponse.UserMetadata, updateconsumergroupResponse.UserMetadata); - - // Delete Created ConsumerGroup and check for the NotFound exception - EventHubManagementClient.ConsumerGroups.Delete(resourceGroup, namespaceName, eventhubName, consumergroupName); - - // Delete Created EventHub and check for the NotFound exception - EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Create Eventhub + var eventhubName = EventHubManagementHelper.EventHubPrefix; + var createEventhubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, new Eventhub() { MessageRetentionInDays = 5 }); + + Assert.NotNull(createEventhubResponse); + Assert.Equal(createEventhubResponse.Name, eventhubName); + + //Get the created EventHub + var geteventhubResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(geteventhubResponse); + Assert.Equal(EntityStatus.Active, geteventhubResponse.Status); + Assert.Equal(geteventhubResponse.Name, eventhubName); + + // Create ConsumerGroup. + var consumergroupName = EventHubManagementHelper.ConsumerGroupPrefix; + string UserMetadata = "Newly Created"; + var createConsumergroupResponse = EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, consumergroupName, new ConsumerGroup { UserMetadata = UserMetadata }); + Assert.NotNull(createConsumergroupResponse); + Assert.Equal(createConsumergroupResponse.Name, consumergroupName); + + // Get Created ConsumerGroup + var getConsumergroupGetResponse = EventHubManagementClient.ConsumerGroups.Get(resourceGroup, namespaceName, eventhubName, consumergroupName); + Assert.NotNull(getConsumergroupGetResponse); + Assert.Equal(getConsumergroupGetResponse.Name, consumergroupName); + + // Get all ConsumerGroup + var getSubscriptionsListAllResponse = EventHubManagementClient.ConsumerGroups.ListByEventHub(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(getSubscriptionsListAllResponse); + Assert.True(getSubscriptionsListAllResponse.All(ns => ns.Id.Contains(resourceGroup))); + + //Update the Created consumergroup + createConsumergroupResponse.UserMetadata = "Updated the user meta data"; + var updateconsumergroupResponse = EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, consumergroupName, createConsumergroupResponse); + Assert.NotNull(updateconsumergroupResponse); + Assert.Equal(updateconsumergroupResponse.Name, createConsumergroupResponse.Name); + Assert.Equal("Updated the user meta data", updateconsumergroupResponse.UserMetadata); + + // Get Created ConsumerGroup + var getConsumergroupResponse = EventHubManagementClient.ConsumerGroups.Get(resourceGroup, namespaceName, eventhubName, consumergroupName); + Assert.NotNull(getConsumergroupResponse); + Assert.Equal(getConsumergroupResponse.Name, consumergroupName); + Assert.Equal(getConsumergroupResponse.UserMetadata, updateconsumergroupResponse.UserMetadata); + + // Delete Created ConsumerGroup and check for the NotFound exception + EventHubManagementClient.ConsumerGroups.Delete(resourceGroup, namespaceName, eventhubName, consumergroupName); + + // Delete Created EventHub and check for the NotFound exception + EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); + + // Delete namespace + EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + finally + { + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + } - // Delete namespace - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); //Subscription end } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DedicatedClusters.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DedicatedClusters.CRUD.cs new file mode 100644 index 000000000000..b65c40e6d5ad --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DedicatedClusters.CRUD.cs @@ -0,0 +1,84 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + + +namespace EventHub.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Threading; + using Microsoft.Azure.Management.EventHub; + using Microsoft.Azure.Management.EventHub.Models; + using Microsoft.Azure.Management.KeyVault; + using Microsoft.Azure.Management.KeyVault.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void DedicatedClusterGetCreateNamespace() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + InitializeClients(context); + + var location = "West US"; + + var resourceGroupCluster = EventHubManagementHelper.ResourceGroupCluster; + + var testClusterName = EventHubManagementHelper.TestClusterName; + + var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); + + /// the Test for to the IEH self-serve cluster,we have dependency on deleting a self-serve cluster, Cluster can be deleted only after 4 hours + + try + { + Cluster getClusterResponse = EventHubManagementClient.Clusters.Get(resourceGroupCluster, testClusterName); + + var checkNameAvailable = EventHubManagementClient.Namespaces.CheckNameAvailability(new CheckNameAvailabilityParameter() { Name = namespaceName }); + + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroupCluster, namespaceName, + new EHNamespace() + { + Location = location, + Sku = new Microsoft.Azure.Management.EventHub.Models.Sku + { + Name = Microsoft.Azure.Management.EventHub.Models.SkuName.Standard, + Tier = SkuTier.Standard + }, + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + }, + IsAutoInflateEnabled = false, + MaximumThroughputUnits = 0, + ClusterArmId = getClusterResponse.Id, + Identity = new Identity() { Type = IdentityType.SystemAssigned} + }); + + Assert.NotNull(createNamespaceResponse); + Assert.Equal(namespaceName, createNamespaceResponse.Name); + Assert.Equal(getClusterResponse.Id, createNamespaceResponse.ClusterArmId); + Assert.False(createNamespaceResponse.IsAutoInflateEnabled); + Assert.Equal(0,createNamespaceResponse.MaximumThroughputUnits); + + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + //Delete the namesapce within the cluster + this.EventHubManagementClient.Namespaces.DeleteAsync(resourceGroupCluster, namespaceName, default(CancellationToken)).ConfigureAwait(false); + + } + finally + { + //Delete Resource Group + } + + } + } + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DisasterRecoveryAlertnateNameTests.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DisasterRecoveryAlertnateNameTests.CRUD.cs index 9383ee680f8c..b439f0c0abc2 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DisasterRecoveryAlertnateNameTests.CRUD.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DisasterRecoveryAlertnateNameTests.CRUD.cs @@ -27,7 +27,7 @@ public void DisasterRecoveryAlertnateNameCreateGetUpdateDelete() var location = "South Central US"; var location2 = "North Central US"; - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -36,168 +36,177 @@ public void DisasterRecoveryAlertnateNameCreateGetUpdateDelete() var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - // Create namespace 1 - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, - new EHNamespace() - { - Location = location, - Sku = new Sku - { - Name = SkuName.Standard, - Tier = SkuTier.Standard, - Capacity = 1 - }, - Tags = new Dictionary() + try + { + // Create namespace 1 + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new EHNamespace() { + Location = location, + Sku = new Sku + { + Name = SkuName.Standard, + Tier = SkuTier.Standard, + Capacity = 1 + }, + Tags = new Dictionary() + { {"tag1", "value1"}, {"tag2", "value2"} - } - }); + } + }); - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Create namespace 2 - var namespaceName2 = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var createNamespaceResponse2 = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName2, - new EHNamespace() - { - Location = location2, - Sku = new Sku - { - Name = SkuName.Standard, - Tier = SkuTier.Standard, - Capacity = 1 - }, - Tags = new Dictionary() + // Create namespace 2 + var namespaceName2 = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); + var createNamespaceResponse2 = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName2, + new EHNamespace() { + Location = location2, + Sku = new Sku + { + Name = SkuName.Standard, + Tier = SkuTier.Standard, + Capacity = 1 + }, + Tags = new Dictionary() + { {"tag1", "value1"}, {"tag2", "value2"} - } - }); - - Assert.NotNull(createNamespaceResponse2); - Assert.Equal(createNamespaceResponse2.Name, namespaceName2); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); - - // Create a namespace AuthorizationRule - var authorizationRuleName = TestUtilities.GenerateName(EventHubManagementHelper.AuthorizationRulesPrefix); - var createAutorizationRuleParameter = new AuthorizationRule() - { - Rights = new List() { AccessRights.Listen, AccessRights.Send } - }; - - var createNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, - authorizationRuleName, createAutorizationRuleParameter); - Assert.NotNull(createNamespaceAuthorizationRuleResponse); - Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(createNamespaceAuthorizationRuleResponse.Rights, r => r == right); - } + } + }); - // Get created namespace AuthorizationRules - var getNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); - Assert.NotNull(getNamespaceAuthorizationRulesResponse); - Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == right); - } + Assert.NotNull(createNamespaceResponse2); + Assert.Equal(createNamespaceResponse2.Name, namespaceName2); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - var getNamespaceAuthorizationRulesListKeysResponse = EventHubManagementClient.Namespaces.ListKeys(resourceGroup, namespaceName, authorizationRuleName); + // Create a namespace AuthorizationRule + var authorizationRuleName = TestUtilities.GenerateName(EventHubManagementHelper.AuthorizationRulesPrefix); + var createAutorizationRuleParameter = new AuthorizationRule() + { + Rights = new List() { AccessRights.Listen, AccessRights.Send } + }; + + var createNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, + authorizationRuleName, createAutorizationRuleParameter); + Assert.NotNull(createNamespaceAuthorizationRuleResponse); + Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(createNamespaceAuthorizationRuleResponse.Rights, r => r == right); + } + + // Get created namespace AuthorizationRules + var getNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRulesResponse); + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == right); + } - // Create a Disaster Recovery - - var alternateName = TestUtilities.GenerateName(EventHubManagementHelper.DisasterRecoveryPrefix); + var getNamespaceAuthorizationRulesListKeysResponse = EventHubManagementClient.Namespaces.ListKeys(resourceGroup, namespaceName, authorizationRuleName); - //CheckNameavaliability for Alias + // Create a Disaster Recovery - + var alternateName = TestUtilities.GenerateName(EventHubManagementHelper.DisasterRecoveryPrefix); - var checknameAlias = EventHubManagementClient.DisasterRecoveryConfigs.CheckNameAvailability(resourceGroup, namespaceName, new CheckNameAvailabilityParameter(namespaceName)); + //CheckNameavaliability for Alias - Assert.True(checknameAlias.NameAvailable, "The Alias Name: '" + namespaceName + "' is not avilable"); + var checknameAlias = EventHubManagementClient.DisasterRecoveryConfigs.CheckNameAvailability(resourceGroup, namespaceName, new CheckNameAvailabilityParameter(namespaceName)); + Assert.True(checknameAlias.NameAvailable, "The Alias Name: '" + namespaceName + "' is not avilable"); - var DisasterRecoveryResponse = EventHubManagementClient.DisasterRecoveryConfigs.CreateOrUpdate(resourceGroup, namespaceName, namespaceName, new ArmDisasterRecovery() - { - PartnerNamespace = createNamespaceResponse2.Id, - AlternateName = alternateName - }); - Assert.NotNull(DisasterRecoveryResponse); + var DisasterRecoveryResponse = EventHubManagementClient.DisasterRecoveryConfigs.CreateOrUpdate(resourceGroup, namespaceName, namespaceName, new ArmDisasterRecovery() + { + PartnerNamespace = createNamespaceResponse2.Id, + AlternateName = alternateName - TestUtilities.Wait(TimeSpan.FromSeconds(30)); + }); + Assert.NotNull(DisasterRecoveryResponse); - //// Get the created DisasterRecovery config - Primary - var disasterRecoveryGetResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName); - Assert.NotNull(disasterRecoveryGetResponse); - Assert.Equal(RoleDisasterRecovery.Primary, disasterRecoveryGetResponse.Role); + TestUtilities.Wait(TimeSpan.FromSeconds(30)); - //// Get the created DisasterRecovery config - Secondary - var disasterRecoveryGetResponse_Sec = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName2, namespaceName); - Assert.NotNull(disasterRecoveryGetResponse_Sec); - Assert.Equal(RoleDisasterRecovery.Secondary, disasterRecoveryGetResponse_Sec.Role); + //// Get the created DisasterRecovery config - Primary + var disasterRecoveryGetResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName); + Assert.NotNull(disasterRecoveryGetResponse); + Assert.Equal(RoleDisasterRecovery.Primary, disasterRecoveryGetResponse.Role); - //Get authorization rule thorugh Alias + //// Get the created DisasterRecovery config - Secondary + var disasterRecoveryGetResponse_Sec = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName2, namespaceName); + Assert.NotNull(disasterRecoveryGetResponse_Sec); + Assert.Equal(RoleDisasterRecovery.Secondary, disasterRecoveryGetResponse_Sec.Role); - var getAuthoRuleAliasResponse = EventHubManagementClient.DisasterRecoveryConfigs.GetAuthorizationRule(resourceGroup, namespaceName, namespaceName, authorizationRuleName); - Assert.Equal(getAuthoRuleAliasResponse.Name, getNamespaceAuthorizationRulesResponse.Name); + //Get authorization rule thorugh Alias - var getAuthoruleListKeysResponse = EventHubManagementClient.DisasterRecoveryConfigs.ListKeys(resourceGroup, namespaceName, namespaceName, authorizationRuleName); + var getAuthoRuleAliasResponse = EventHubManagementClient.DisasterRecoveryConfigs.GetAuthorizationRule(resourceGroup, namespaceName, namespaceName, authorizationRuleName); + Assert.Equal(getAuthoRuleAliasResponse.Name, getNamespaceAuthorizationRulesResponse.Name); + var getAuthoruleListKeysResponse = EventHubManagementClient.DisasterRecoveryConfigs.ListKeys(resourceGroup, namespaceName, namespaceName, authorizationRuleName); - var disasterRecoveryGetResponse_Accepted = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName); - while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName).ProvisioningState != ProvisioningStateDR.Succeeded) - { - TestUtilities.Wait(TimeSpan.FromSeconds(10)); - } + var disasterRecoveryGetResponse_Accepted = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName); - //// Break Pairing - EventHubManagementClient.DisasterRecoveryConfigs.BreakPairing(resourceGroup, namespaceName, namespaceName); - TestUtilities.Wait(TimeSpan.FromSeconds(10)); + while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName).ProvisioningState != ProvisioningStateDR.Succeeded) + { + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + } - while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName).ProvisioningState != ProvisioningStateDR.Succeeded) - { + //// Break Pairing + EventHubManagementClient.DisasterRecoveryConfigs.BreakPairing(resourceGroup, namespaceName, namespaceName); TestUtilities.Wait(TimeSpan.FromSeconds(10)); - } - var DisasterRecoveryResponse_update = EventHubManagementClient.DisasterRecoveryConfigs.CreateOrUpdate(resourceGroup, namespaceName, namespaceName, new ArmDisasterRecovery() - { - PartnerNamespace = createNamespaceResponse2.Id, - AlternateName = alternateName - }); + while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName).ProvisioningState != ProvisioningStateDR.Succeeded) + { + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + } - Assert.NotNull(DisasterRecoveryResponse_update); - TestUtilities.Wait(TimeSpan.FromSeconds(10)); + var DisasterRecoveryResponse_update = EventHubManagementClient.DisasterRecoveryConfigs.CreateOrUpdate(resourceGroup, namespaceName, namespaceName, new ArmDisasterRecovery() + { + PartnerNamespace = createNamespaceResponse2.Id, + AlternateName = alternateName + }); - while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName).ProvisioningState != ProvisioningStateDR.Succeeded) - { + Assert.NotNull(DisasterRecoveryResponse_update); TestUtilities.Wait(TimeSpan.FromSeconds(10)); - } - // Fail over - EventHubManagementClient.DisasterRecoveryConfigs.FailOver(resourceGroup, namespaceName2, namespaceName); + while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, namespaceName).ProvisioningState != ProvisioningStateDR.Succeeded) + { + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + } - TestUtilities.Wait(TimeSpan.FromSeconds(10)); + // Fail over + EventHubManagementClient.DisasterRecoveryConfigs.FailOver(resourceGroup, namespaceName2, namespaceName); - while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName2, namespaceName).ProvisioningState != ProvisioningStateDR.Succeeded) - { TestUtilities.Wait(TimeSpan.FromSeconds(10)); - } - // Get all Disaster Recovery for a given NameSpace - var getListisasterRecoveryResponse = EventHubManagementClient.DisasterRecoveryConfigs.List(resourceGroup, namespaceName2); - Assert.NotNull(getListisasterRecoveryResponse); - Assert.True(getListisasterRecoveryResponse.Count() >= 1); + while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName2, namespaceName).ProvisioningState != ProvisioningStateDR.Succeeded) + { + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + } + + // Get all Disaster Recovery for a given NameSpace + var getListisasterRecoveryResponse = EventHubManagementClient.DisasterRecoveryConfigs.List(resourceGroup, namespaceName2); + Assert.NotNull(getListisasterRecoveryResponse); + Assert.True(getListisasterRecoveryResponse.Count() >= 1); - // Delete the DisasterRecovery - EventHubManagementClient.DisasterRecoveryConfigs.Delete(resourceGroup, namespaceName2, namespaceName); + // Delete the DisasterRecovery + EventHubManagementClient.DisasterRecoveryConfigs.Delete(resourceGroup, namespaceName2, namespaceName); - // Delete Namespace using Async - EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName, null, new CancellationToken()).ConfigureAwait(false); + // Delete Namespace using Async + EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName, null, new CancellationToken()).ConfigureAwait(false); - EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName2, null, new CancellationToken()).ConfigureAwait(false); + EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName2, null, new CancellationToken()).ConfigureAwait(false); + } + finally + { + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); + } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DisasterRecoveryTests.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DisasterRecoveryTests.CRUD.cs index 7a0001909e1f..fc0c856a0055 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DisasterRecoveryTests.CRUD.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.DisasterRecoveryTests.CRUD.cs @@ -27,7 +27,7 @@ public void DisasterRecoveryCreateGetUpdateDelete() var location = "South Central US"; var location2 = "North Central US"; - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -36,191 +36,200 @@ public void DisasterRecoveryCreateGetUpdateDelete() var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - // Create namespace 1 - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, - new EHNamespace() - { - Location = location, - Sku = new Sku - { - Name = SkuName.Standard, - Tier = SkuTier.Standard, - Capacity = 1 - }, - Tags = new Dictionary() + try + { + // Create namespace 1 + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new EHNamespace() { + Location = location, + Sku = new Sku + { + Name = SkuName.Standard, + Tier = SkuTier.Standard, + Capacity = 1 + }, + Tags = new Dictionary() + { {"tag1", "value1"}, {"tag2", "value2"} - } - }); + } + }); - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - //var createNamespaceResponse = this.EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + //var createNamespaceResponse = this.EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - //// Create namespace 2 - var namespaceName2 = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var createNamespaceResponse2 = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName2, - new EHNamespace() - { - Location = location2, - Sku = new Sku - { - Name = SkuName.Standard, - Tier = SkuTier.Standard, - Capacity = 1 - }, - Tags = new Dictionary() + //// Create namespace 2 + var namespaceName2 = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); + var createNamespaceResponse2 = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName2, + new EHNamespace() { + Location = location2, + Sku = new Sku + { + Name = SkuName.Standard, + Tier = SkuTier.Standard, + Capacity = 1 + }, + Tags = new Dictionary() + { {"tag1", "value1"}, {"tag2", "value2"} - } - }); - - Assert.NotNull(createNamespaceResponse2); - Assert.Equal(createNamespaceResponse2.Name, namespaceName2); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); - - // Create a namespace AuthorizationRule - var authorizationRuleName = TestUtilities.GenerateName(EventHubManagementHelper.AuthorizationRulesPrefix); - var createAutorizationRuleParameter = new AuthorizationRule() - { - Rights = new List() { AccessRights.Listen, AccessRights.Send } - }; - - var createNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, - authorizationRuleName, createAutorizationRuleParameter); - Assert.NotNull(createNamespaceAuthorizationRuleResponse); - Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(createNamespaceAuthorizationRuleResponse.Rights, r => r == right); - } + } + }); - // Get created namespace AuthorizationRules - var getNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); - Assert.NotNull(getNamespaceAuthorizationRulesResponse); - Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == right); - } + Assert.NotNull(createNamespaceResponse2); + Assert.Equal(createNamespaceResponse2.Name, namespaceName2); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - var getNamespaceAuthorizationRulesListKeysResponse = EventHubManagementClient.Namespaces.ListKeys(resourceGroup, namespaceName, authorizationRuleName); + // Create a namespace AuthorizationRule + var authorizationRuleName = TestUtilities.GenerateName(EventHubManagementHelper.AuthorizationRulesPrefix); + var createAutorizationRuleParameter = new AuthorizationRule() + { + Rights = new List() { AccessRights.Listen, AccessRights.Send } + }; + + var createNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, + authorizationRuleName, createAutorizationRuleParameter); + Assert.NotNull(createNamespaceAuthorizationRuleResponse); + Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(createNamespaceAuthorizationRuleResponse.Rights, r => r == right); + } + + // Get created namespace AuthorizationRules + var getNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRulesResponse); + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == right); + } - // Create a Disaster Recovery - - var disasterRecoveryName = TestUtilities.GenerateName(EventHubManagementHelper.DisasterRecoveryPrefix); + var getNamespaceAuthorizationRulesListKeysResponse = EventHubManagementClient.Namespaces.ListKeys(resourceGroup, namespaceName, authorizationRuleName); - //CheckNameavaliability for Alias + // Create a Disaster Recovery - + var disasterRecoveryName = TestUtilities.GenerateName(EventHubManagementHelper.DisasterRecoveryPrefix); - var checknameAlias = EventHubManagementClient.DisasterRecoveryConfigs.CheckNameAvailability(resourceGroup, namespaceName, new CheckNameAvailabilityParameter(disasterRecoveryName)); + //CheckNameavaliability for Alias - Assert.True(checknameAlias.NameAvailable, "The Alias Name: '" + disasterRecoveryName + "' is not avilable"); + var checknameAlias = EventHubManagementClient.DisasterRecoveryConfigs.CheckNameAvailability(resourceGroup, namespaceName, new CheckNameAvailabilityParameter(disasterRecoveryName)); - //CheckNameAvaliability for Alias with same as namespace name (alternateName will be used in this case) - var checknameAliasSame = EventHubManagementClient.DisasterRecoveryConfigs.CheckNameAvailability(resourceGroup, namespaceName, new CheckNameAvailabilityParameter(namespaceName)); + Assert.True(checknameAlias.NameAvailable, "The Alias Name: '" + disasterRecoveryName + "' is not avilable"); - // Assert.True(checknameAliasSame.NameAvailable, "The Alias Name: '" + namespaceName + "' is not avilable"); + //CheckNameAvaliability for Alias with same as namespace name (alternateName will be used in this case) + var checknameAliasSame = EventHubManagementClient.DisasterRecoveryConfigs.CheckNameAvailability(resourceGroup, namespaceName, new CheckNameAvailabilityParameter(namespaceName)); + // Assert.True(checknameAliasSame.NameAvailable, "The Alias Name: '" + namespaceName + "' is not avilable"); - var DisasterRecoveryResponse = EventHubManagementClient.DisasterRecoveryConfigs.CreateOrUpdate(resourceGroup, namespaceName, disasterRecoveryName, new ArmDisasterRecovery() - { - PartnerNamespace = createNamespaceResponse2.Id - }); - Assert.NotNull(DisasterRecoveryResponse); - TestUtilities.Wait(TimeSpan.FromSeconds(30)); + var DisasterRecoveryResponse = EventHubManagementClient.DisasterRecoveryConfigs.CreateOrUpdate(resourceGroup, namespaceName, disasterRecoveryName, new ArmDisasterRecovery() + { + PartnerNamespace = createNamespaceResponse2.Id + }); + Assert.NotNull(DisasterRecoveryResponse); - //// Get the created DisasterRecovery config - Primary - var disasterRecoveryGetResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); - Assert.NotNull(disasterRecoveryGetResponse); - if (disasterRecoveryGetResponse.PendingReplicationOperationsCount.HasValue) - Assert.True(disasterRecoveryGetResponse.PendingReplicationOperationsCount >= 0); - else - Assert.False(disasterRecoveryGetResponse.PendingReplicationOperationsCount.HasValue); - Assert.Equal(RoleDisasterRecovery.Primary, disasterRecoveryGetResponse.Role); + TestUtilities.Wait(TimeSpan.FromSeconds(30)); - //// Get the created DisasterRecovery config - Secondary - var disasterRecoveryGetResponse_Sec = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName2, disasterRecoveryName); - Assert.Equal(RoleDisasterRecovery.Secondary, disasterRecoveryGetResponse_Sec.Role); + //// Get the created DisasterRecovery config - Primary + var disasterRecoveryGetResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); + Assert.NotNull(disasterRecoveryGetResponse); + if (disasterRecoveryGetResponse.PendingReplicationOperationsCount.HasValue) + Assert.True(disasterRecoveryGetResponse.PendingReplicationOperationsCount >= 0); + else + Assert.False(disasterRecoveryGetResponse.PendingReplicationOperationsCount.HasValue); + Assert.Equal(RoleDisasterRecovery.Primary, disasterRecoveryGetResponse.Role); - //Get authorization rule thorugh Alias + //// Get the created DisasterRecovery config - Secondary + var disasterRecoveryGetResponse_Sec = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName2, disasterRecoveryName); + Assert.Equal(RoleDisasterRecovery.Secondary, disasterRecoveryGetResponse_Sec.Role); - var getAuthoRuleAliasResponse = EventHubManagementClient.DisasterRecoveryConfigs.GetAuthorizationRule(resourceGroup, namespaceName, disasterRecoveryName, authorizationRuleName); - Assert.Equal(getAuthoRuleAliasResponse.Name, getNamespaceAuthorizationRulesResponse.Name); + //Get authorization rule thorugh Alias - var getAuthoruleListKeysResponse = EventHubManagementClient.DisasterRecoveryConfigs.ListKeys(resourceGroup, namespaceName, disasterRecoveryName, authorizationRuleName); - Assert.True(string.IsNullOrEmpty(getAuthoruleListKeysResponse.PrimaryConnectionString)); - Assert.True(string.IsNullOrEmpty(getAuthoruleListKeysResponse.SecondaryConnectionString)); + var getAuthoRuleAliasResponse = EventHubManagementClient.DisasterRecoveryConfigs.GetAuthorizationRule(resourceGroup, namespaceName, disasterRecoveryName, authorizationRuleName); + Assert.Equal(getAuthoRuleAliasResponse.Name, getNamespaceAuthorizationRulesResponse.Name); - while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName).ProvisioningState != ProvisioningStateDR.Succeeded) - { - TestUtilities.Wait(TimeSpan.FromSeconds(10)); - } + var getAuthoruleListKeysResponse = EventHubManagementClient.DisasterRecoveryConfigs.ListKeys(resourceGroup, namespaceName, disasterRecoveryName, authorizationRuleName); + Assert.True(string.IsNullOrEmpty(getAuthoruleListKeysResponse.PrimaryConnectionString)); + Assert.True(string.IsNullOrEmpty(getAuthoruleListKeysResponse.SecondaryConnectionString)); - disasterRecoveryGetResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); + while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName).ProvisioningState != ProvisioningStateDR.Succeeded) + { + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + } - if (disasterRecoveryGetResponse.PendingReplicationOperationsCount.HasValue) - Assert.True(disasterRecoveryGetResponse.PendingReplicationOperationsCount >= 0); - else - Assert.False(disasterRecoveryGetResponse.PendingReplicationOperationsCount.HasValue); + disasterRecoveryGetResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); - //// Break Pairing - EventHubManagementClient.DisasterRecoveryConfigs.BreakPairing(resourceGroup, namespaceName, disasterRecoveryName); - TestUtilities.Wait(TimeSpan.FromSeconds(10)); + if (disasterRecoveryGetResponse.PendingReplicationOperationsCount.HasValue) + Assert.True(disasterRecoveryGetResponse.PendingReplicationOperationsCount >= 0); + else + Assert.False(disasterRecoveryGetResponse.PendingReplicationOperationsCount.HasValue); - while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName).ProvisioningState != ProvisioningStateDR.Succeeded) - { + //// Break Pairing + EventHubManagementClient.DisasterRecoveryConfigs.BreakPairing(resourceGroup, namespaceName, disasterRecoveryName); TestUtilities.Wait(TimeSpan.FromSeconds(10)); - } - - var DisasterRecoveryResponse_update = EventHubManagementClient.DisasterRecoveryConfigs.CreateOrUpdate(resourceGroup, namespaceName, disasterRecoveryName, new ArmDisasterRecovery() - { - PartnerNamespace = createNamespaceResponse2.Id - }); - Assert.NotNull(DisasterRecoveryResponse_update); - TestUtilities.Wait(TimeSpan.FromSeconds(10)); + while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName).ProvisioningState != ProvisioningStateDR.Succeeded) + { + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + } - var getGeoDRResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); + var DisasterRecoveryResponse_update = EventHubManagementClient.DisasterRecoveryConfigs.CreateOrUpdate(resourceGroup, namespaceName, disasterRecoveryName, new ArmDisasterRecovery() + { + PartnerNamespace = createNamespaceResponse2.Id + }); - while (getGeoDRResponse.ProvisioningState != ProvisioningStateDR.Succeeded) - { - getGeoDRResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); + Assert.NotNull(DisasterRecoveryResponse_update); TestUtilities.Wait(TimeSpan.FromSeconds(10)); - } - getGeoDRResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); + var getGeoDRResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); + + while (getGeoDRResponse.ProvisioningState != ProvisioningStateDR.Succeeded) + { + getGeoDRResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + } - if (getGeoDRResponse.PendingReplicationOperationsCount.HasValue) - Assert.True(getGeoDRResponse.PendingReplicationOperationsCount >= 0); - else - Assert.False(getGeoDRResponse.PendingReplicationOperationsCount.HasValue); + getGeoDRResponse = EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName, disasterRecoveryName); - // Fail over - EventHubManagementClient.DisasterRecoveryConfigs.FailOver(resourceGroup, namespaceName2, disasterRecoveryName); + if (getGeoDRResponse.PendingReplicationOperationsCount.HasValue) + Assert.True(getGeoDRResponse.PendingReplicationOperationsCount >= 0); + else + Assert.False(getGeoDRResponse.PendingReplicationOperationsCount.HasValue); - TestUtilities.Wait(TimeSpan.FromSeconds(10)); + // Fail over + EventHubManagementClient.DisasterRecoveryConfigs.FailOver(resourceGroup, namespaceName2, disasterRecoveryName); - while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName2, disasterRecoveryName).ProvisioningState != ProvisioningStateDR.Succeeded) - { TestUtilities.Wait(TimeSpan.FromSeconds(10)); - } - // Get all Disaster Recovery for a given NameSpace - var getListisasterRecoveryResponse = EventHubManagementClient.DisasterRecoveryConfigs.List(resourceGroup, namespaceName2); - Assert.NotNull(getListisasterRecoveryResponse); - Assert.True(getListisasterRecoveryResponse.Count() >= 1); + while (EventHubManagementClient.DisasterRecoveryConfigs.Get(resourceGroup, namespaceName2, disasterRecoveryName).ProvisioningState != ProvisioningStateDR.Succeeded) + { + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + } + + // Get all Disaster Recovery for a given NameSpace + var getListisasterRecoveryResponse = EventHubManagementClient.DisasterRecoveryConfigs.List(resourceGroup, namespaceName2); + Assert.NotNull(getListisasterRecoveryResponse); + Assert.True(getListisasterRecoveryResponse.Count() >= 1); - // Delete the DisasterRecovery - EventHubManagementClient.DisasterRecoveryConfigs.Delete(resourceGroup, namespaceName2, disasterRecoveryName); + // Delete the DisasterRecovery + EventHubManagementClient.DisasterRecoveryConfigs.Delete(resourceGroup, namespaceName2, disasterRecoveryName); - // Delete Namespace using Async - EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName, null, new CancellationToken()).ConfigureAwait(false); + // Delete Namespace using Async + EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName, null, new CancellationToken()).ConfigureAwait(false); - EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName2, null, new CancellationToken()).ConfigureAwait(false); + EventHubManagementClient.Namespaces.DeleteWithHttpMessagesAsync(resourceGroup, namespaceName2, null, new CancellationToken()).ConfigureAwait(false); + } + finally + { + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); + } } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubTests.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubTests.CRUD.cs index e29094d9b303..b880affbf7ea 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubTests.CRUD.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubTests.CRUD.cs @@ -8,6 +8,7 @@ namespace EventHub.Tests.ScenarioTests using System.Collections.Generic; using System.Linq; using System.Net; + using System.Threading; using Microsoft.Azure.Management.EventHub; using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Rest.Azure; @@ -25,7 +26,7 @@ public void EventCreateGetUpdateDelete() var location = this.ResourceManagementClient.GetLocationFromProvider(); - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -34,7 +35,9 @@ public void EventCreateGetUpdateDelete() var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + try + { + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, new EHNamespace() { Location = location, @@ -50,71 +53,82 @@ public void EventCreateGetUpdateDelete() } }); - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Create a EventHub - var eventhubName = TestUtilities.GenerateName(EventHubManagementHelper.EventHubPrefix); + // Create a EventHub + var eventhubName = TestUtilities.GenerateName(EventHubManagementHelper.EventHubPrefix); - var createEventHubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, - new Eventhub() { MessageRetentionInDays = 4, PartitionCount = 4, Status = EntityStatus.Active, - CaptureDescription = new CaptureDescription() + var createEventHubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, + new Eventhub() { - Enabled = true, - Encoding = EncodingCaptureDescription.Avro, - IntervalInSeconds = 120, - SizeLimitInBytes = 10485763, - Destination = new Destination() + MessageRetentionInDays = 4, + PartitionCount = 4, + Status = EntityStatus.Active, + CaptureDescription = new CaptureDescription() { - Name = "EventHubArchive.AzureBlockBlob", - BlobContainer = "container", - ArchiveNameFormat = "{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}", - StorageAccountResourceId = "/subscriptions/"+ResourceManagementClient.SubscriptionId.ToString()+"/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhub11" - }, - SkipEmptyArchives = true - } - }); + Enabled = true, + Encoding = EncodingCaptureDescription.Avro, + IntervalInSeconds = 120, + SizeLimitInBytes = 10485763, + Destination = new Destination() + { + Name = "EventHubArchive.AzureBlockBlob", + BlobContainer = "container", + ArchiveNameFormat = "{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}", + StorageAccountResourceId = "/subscriptions/" + ResourceManagementClient.SubscriptionId.ToString() + "/resourcegroups/v-ajnavtest/providers/Microsoft.Storage/storageAccounts/testingsdkeventhubnew" + }, + SkipEmptyArchives = true + } + }); - Assert.NotNull(createEventHubResponse); - Assert.Equal(createEventHubResponse.Name, eventhubName); - Assert.True(createEventHubResponse.CaptureDescription.SkipEmptyArchives); + Assert.NotNull(createEventHubResponse); + Assert.Equal(createEventHubResponse.Name, eventhubName); + Assert.True(createEventHubResponse.CaptureDescription.SkipEmptyArchives); - // Get the created EventHub - var getEventResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(getEventResponse); - Assert.Equal(EntityStatus.Active, getEventResponse.Status); + // Get the created EventHub + var getEventResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(getEventResponse); + Assert.Equal(EntityStatus.Active, getEventResponse.Status); - // Get all Event Hubs for a given NameSpace - var getListEventHubResponse = EventHubManagementClient.EventHubs.ListByNamespace(resourceGroup, namespaceName); - Assert.NotNull(getListEventHubResponse); - Assert.True(getListEventHubResponse.Count() >= 1); + // Get all Event Hubs for a given NameSpace + var getListEventHubResponse = EventHubManagementClient.EventHubs.ListByNamespace(resourceGroup, namespaceName); + Assert.NotNull(getListEventHubResponse); + Assert.True(getListEventHubResponse.Count() >= 1); - // Update the EventHub - getEventResponse.CaptureDescription.IntervalInSeconds = 130; - getEventResponse.CaptureDescription.SizeLimitInBytes = 10485900; - getEventResponse.MessageRetentionInDays = 5; + // Update the EventHub + getEventResponse.CaptureDescription.IntervalInSeconds = 130; + getEventResponse.CaptureDescription.SizeLimitInBytes = 10485900; + getEventResponse.MessageRetentionInDays = 5; - var getUpdateEventhubPropertiesResponse = EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, getEventResponse); - Assert.NotNull(getUpdateEventhubPropertiesResponse); + var getUpdateEventhubPropertiesResponse = EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, getEventResponse); + Assert.NotNull(getUpdateEventhubPropertiesResponse); - getEventResponse.MessageRetentionInDays = 6; - var getUpdateEventhubPropertiesResponse1 = EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, getEventResponse); + getEventResponse.MessageRetentionInDays = 6; + var getUpdateEventhubPropertiesResponse1 = EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, getEventResponse); - // Get the updated EventHub and verify the properties - getEventResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(getEventResponse); - Assert.Equal(EntityStatus.Active, getEventResponse.Status); - Assert.Equal(6, getEventResponse.MessageRetentionInDays); + // Get the updated EventHub and verify the properties + getEventResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(getEventResponse); + Assert.Equal(EntityStatus.Active, getEventResponse.Status); + Assert.Equal(6, getEventResponse.MessageRetentionInDays); - // Delete the Evnet Hub - EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); + // Delete the Evnet Hub + EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Delete namespace and check for the NotFound exception - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + // Delete namespace and check for the NotFound exception + EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + finally + { + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); + } } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubsTests.CRUDAuthorizationRules.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubsTests.CRUDAuthorizationRules.cs index a1d3c5b0ce20..442b85c98c3b 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubsTests.CRUDAuthorizationRules.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubsTests.CRUDAuthorizationRules.cs @@ -8,6 +8,7 @@ namespace EventHub.Tests.ScenarioTests using System.Collections.Generic; using System.Linq; using System.Net; + using System.Threading; using Microsoft.Azure.Management.EventHub; using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Azure.Test.HttpRecorder; @@ -26,7 +27,7 @@ public void EventhubCreateGetUpdateDeleteAuthorizationRules() var location = this.ResourceManagementClient.GetLocationFromProvider(); - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -36,7 +37,9 @@ public void EventhubCreateGetUpdateDeleteAuthorizationRules() // Create a namespace var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + try + { + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, new EHNamespace() { Location = location, @@ -52,123 +55,130 @@ public void EventhubCreateGetUpdateDeleteAuthorizationRules() } }); - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); - - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); - // Get the created namespace - var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) TestUtilities.Wait(TimeSpan.FromSeconds(5)); - getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - Assert.NotNull(getNamespaceResponse); - Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); - Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); - - // Create Eventhub - var eventhubName = TestUtilities.GenerateName(EventHubManagementHelper.EventHubPrefix); - var createEventhubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, - new Eventhub() { MessageRetentionInDays = 5 }); - - Assert.NotNull(createEventhubResponse); - Assert.Equal(createEventhubResponse.Name, eventhubName); - - // Get the created EventHub - var geteventhubResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(geteventhubResponse); - Assert.Equal(EntityStatus.Active, geteventhubResponse.Status); - Assert.Equal(geteventhubResponse.Name, eventhubName); - - // Create a EventHub AuthorizationRule - var authorizationRuleName = TestUtilities.GenerateName(EventHubManagementHelper.AuthorizationRulesPrefix); - string createPrimaryKey = HttpMockServer.GetVariable("CreatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); - var createAutorizationRuleParameter = new AuthorizationRule() - { - Rights = new List() { AccessRights.Listen, AccessRights.Send } - }; + // Get the created namespace + var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Create Eventhub + var eventhubName = TestUtilities.GenerateName(EventHubManagementHelper.EventHubPrefix); + var createEventhubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, + new Eventhub() { MessageRetentionInDays = 5 }); + + Assert.NotNull(createEventhubResponse); + Assert.Equal(createEventhubResponse.Name, eventhubName); + + // Get the created EventHub + var geteventhubResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(geteventhubResponse); + Assert.Equal(EntityStatus.Active, geteventhubResponse.Status); + Assert.Equal(geteventhubResponse.Name, eventhubName); + + // Create a EventHub AuthorizationRule + var authorizationRuleName = TestUtilities.GenerateName(EventHubManagementHelper.AuthorizationRulesPrefix); + string createPrimaryKey = HttpMockServer.GetVariable("CreatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); + var createAutorizationRuleParameter = new AuthorizationRule() + { + Rights = new List() { AccessRights.Listen, AccessRights.Send } + }; - var jsonStr = EventHubManagementHelper.ConvertObjectToJSon(createAutorizationRuleParameter); + var jsonStr = EventHubManagementHelper.ConvertObjectToJSon(createAutorizationRuleParameter); - var createEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, eventhubName, - authorizationRuleName, createAutorizationRuleParameter); - Assert.NotNull(createEventhubAuthorizationRuleResponse); - Assert.True(createEventhubAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(createEventhubAuthorizationRuleResponse.Rights, r => r == right); - } + var createEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, eventhubName, + authorizationRuleName, createAutorizationRuleParameter); + Assert.NotNull(createEventhubAuthorizationRuleResponse); + Assert.True(createEventhubAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(createEventhubAuthorizationRuleResponse.Rights, r => r == right); + } + + // Get created Eventhub AuthorizationRules + var getEventhubAuthorizationRulesResponse = EventHubManagementClient.EventHubs.GetAuthorizationRule(resourceGroup, namespaceName, eventhubName, authorizationRuleName); + Assert.NotNull(getEventhubAuthorizationRulesResponse); + Assert.True(getEventhubAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(getEventhubAuthorizationRulesResponse.Rights, r => r == right); + } + + // Get all Eventhub AuthorizationRules + var getAllNamespaceAuthorizationRulesResponse = EventHubManagementClient.EventHubs.ListAuthorizationRules(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(getAllNamespaceAuthorizationRulesResponse); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Count() == 1); + Assert.Contains(getAllNamespaceAuthorizationRulesResponse, ns => ns.Name == authorizationRuleName); + + // Update Eventhub authorizationRule + string updatePrimaryKey = HttpMockServer.GetVariable("UpdatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); + AuthorizationRule updateEventhubAuthorizationRuleParameter = new AuthorizationRule(); + updateEventhubAuthorizationRuleParameter.Rights = new List() { AccessRights.Listen }; + + var updateEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.CreateOrUpdateAuthorizationRule(resourceGroup, + namespaceName, eventhubName, authorizationRuleName, updateEventhubAuthorizationRuleParameter); + + Assert.NotNull(updateEventhubAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, updateEventhubAuthorizationRuleResponse.Name); + Assert.True(updateEventhubAuthorizationRuleResponse.Rights.Count == updateEventhubAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateEventhubAuthorizationRuleParameter.Rights) + { + Assert.Contains(updateEventhubAuthorizationRuleResponse.Rights, r => r.Equals(right)); + } + + // Get the updated Eventhub AuthorizationRule + var getEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.GetAuthorizationRule(resourceGroup, namespaceName, eventhubName, + authorizationRuleName); + Assert.NotNull(getEventhubAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, getEventhubAuthorizationRuleResponse.Name); + Assert.True(getEventhubAuthorizationRuleResponse.Rights.Count == updateEventhubAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateEventhubAuthorizationRuleParameter.Rights) + { + Assert.Contains(getEventhubAuthorizationRuleResponse.Rights, r => r.Equals(right)); + } - // Get created Eventhub AuthorizationRules - var getEventhubAuthorizationRulesResponse = EventHubManagementClient.EventHubs.GetAuthorizationRule(resourceGroup, namespaceName, eventhubName, authorizationRuleName); - Assert.NotNull(getEventhubAuthorizationRulesResponse); - Assert.True(getEventhubAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(getEventhubAuthorizationRulesResponse.Rights, r => r == right); - } + // Get the connectionString to the Eventhub for a Authorization rule created + var listKeysResponse = EventHubManagementClient.EventHubs.ListKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName); + Assert.NotNull(listKeysResponse); + Assert.NotNull(listKeysResponse.PrimaryConnectionString); + Assert.NotNull(listKeysResponse.SecondaryConnectionString); - // Get all Eventhub AuthorizationRules - var getAllNamespaceAuthorizationRulesResponse = EventHubManagementClient.EventHubs.ListAuthorizationRules(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(getAllNamespaceAuthorizationRulesResponse); - Assert.True(getAllNamespaceAuthorizationRulesResponse.Count() == 1); - Assert.Contains(getAllNamespaceAuthorizationRulesResponse, ns => ns.Name == authorizationRuleName); + //New connection string + var regenerateConnection_primary = EventHubManagementClient.EventHubs.RegenerateKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.PrimaryKey)); + Assert.NotNull(regenerateConnection_primary); + Assert.NotEqual(listKeysResponse.PrimaryConnectionString, regenerateConnection_primary.PrimaryConnectionString); + Assert.Equal(listKeysResponse.SecondaryConnectionString, regenerateConnection_primary.SecondaryConnectionString); - // Update Eventhub authorizationRule - string updatePrimaryKey = HttpMockServer.GetVariable("UpdatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); - AuthorizationRule updateEventhubAuthorizationRuleParameter = new AuthorizationRule(); - updateEventhubAuthorizationRuleParameter.Rights = new List() { AccessRights.Listen }; + var regenerateConnection_Secondary = EventHubManagementClient.EventHubs.RegenerateKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.SecondaryKey)); + Assert.NotNull(regenerateConnection_Secondary); + Assert.NotEqual(listKeysResponse.SecondaryConnectionString, regenerateConnection_Secondary.SecondaryConnectionString); + Assert.Equal(regenerateConnection_primary.PrimaryConnectionString, regenerateConnection_Secondary.PrimaryConnectionString); - var updateEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.CreateOrUpdateAuthorizationRule(resourceGroup, - namespaceName, eventhubName, authorizationRuleName, updateEventhubAuthorizationRuleParameter); + // Delete Eventhub authorizationRule + EventHubManagementClient.EventHubs.DeleteAuthorizationRule(resourceGroup, namespaceName, eventhubName, authorizationRuleName); - Assert.NotNull(updateEventhubAuthorizationRuleResponse); - Assert.Equal(authorizationRuleName, updateEventhubAuthorizationRuleResponse.Name); - Assert.True(updateEventhubAuthorizationRuleResponse.Rights.Count == updateEventhubAuthorizationRuleParameter.Rights.Count); - foreach (var right in updateEventhubAuthorizationRuleParameter.Rights) - { - Assert.Contains(updateEventhubAuthorizationRuleResponse.Rights, r => r.Equals(right)); - } + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Get the updated Eventhub AuthorizationRule - var getEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.GetAuthorizationRule(resourceGroup, namespaceName, eventhubName, - authorizationRuleName); - Assert.NotNull(getEventhubAuthorizationRuleResponse); - Assert.Equal(authorizationRuleName, getEventhubAuthorizationRuleResponse.Name); - Assert.True(getEventhubAuthorizationRuleResponse.Rights.Count == updateEventhubAuthorizationRuleParameter.Rights.Count); - foreach (var right in updateEventhubAuthorizationRuleParameter.Rights) + // Delete Eventhub and check for the NotFound exception + EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); + + // Delete namespace and check for the NotFound exception + EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + finally { - Assert.Contains(getEventhubAuthorizationRuleResponse.Rights, r => r.Equals(right)); + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); } - - // Get the connectionString to the Eventhub for a Authorization rule created - var listKeysResponse = EventHubManagementClient.EventHubs.ListKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName); - Assert.NotNull(listKeysResponse); - Assert.NotNull(listKeysResponse.PrimaryConnectionString); - Assert.NotNull(listKeysResponse.SecondaryConnectionString); - - //New connection string - var regenerateConnection_primary = EventHubManagementClient.EventHubs.RegenerateKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.PrimaryKey)); - Assert.NotNull(regenerateConnection_primary); - Assert.NotEqual(listKeysResponse.PrimaryConnectionString, regenerateConnection_primary.PrimaryConnectionString); - Assert.Equal(listKeysResponse.SecondaryConnectionString, regenerateConnection_primary.SecondaryConnectionString); - - var regenerateConnection_Secondary = EventHubManagementClient.EventHubs.RegenerateKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.SecondaryKey)); - Assert.NotNull(regenerateConnection_Secondary); - Assert.NotEqual(listKeysResponse.SecondaryConnectionString, regenerateConnection_Secondary.SecondaryConnectionString); - Assert.Equal(regenerateConnection_primary.PrimaryConnectionString, regenerateConnection_Secondary.PrimaryConnectionString); - - // Delete Eventhub authorizationRule - EventHubManagementClient.EventHubs.DeleteAuthorizationRule(resourceGroup, namespaceName, eventhubName, authorizationRuleName); - - TestUtilities.Wait(TimeSpan.FromSeconds(5)); - - // Delete Eventhub and check for the NotFound exception - EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); - - // Delete namespace and check for the NotFound exception - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubsTests.CRUDAuthorizationRules_Length.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubsTests.CRUDAuthorizationRules_Length.cs index c2ab75d76650..14a6a903602b 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubsTests.CRUDAuthorizationRules_Length.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubsTests.CRUDAuthorizationRules_Length.cs @@ -8,6 +8,7 @@ namespace EventHub.Tests.ScenarioTests using System.Collections.Generic; using System.Linq; using System.Net; + using System.Threading; using Microsoft.Azure.Management.EventHub; using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Azure.Test.HttpRecorder; @@ -26,7 +27,7 @@ public void EventhubCreateGetUpdateDeleteAuthorizationRules_Length() var location = this.ResourceManagementClient.GetLocationFromProvider(); - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -36,7 +37,9 @@ public void EventhubCreateGetUpdateDeleteAuthorizationRules_Length() // Create a namespace var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + try + { + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, new EHNamespace() { Location = location, @@ -52,123 +55,130 @@ public void EventhubCreateGetUpdateDeleteAuthorizationRules_Length() } }); - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); - - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); - // Get the created namespace - var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) TestUtilities.Wait(TimeSpan.FromSeconds(5)); - getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - Assert.NotNull(getNamespaceResponse); - Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); - Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); - - // Create Eventhub - var eventhubName = EventHubManagementHelper.EventHubPrefix + "thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit"; - var createEventhubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, - new Eventhub() { MessageRetentionInDays = 5 }); - - Assert.NotNull(createEventhubResponse); - Assert.Equal(createEventhubResponse.Name, eventhubName); - - // Get the created EventHub - var geteventhubResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(geteventhubResponse); - Assert.Equal(EntityStatus.Active, geteventhubResponse.Status); - Assert.Equal(geteventhubResponse.Name, eventhubName); - - // Create a EventHub AuthorizationRule - var authorizationRuleName = EventHubManagementHelper.AuthorizationRulesPrefix + "thisisthenamewithmorethan53charschecktoverifytheremovlaof50charsnamelengthlimit"; - string createPrimaryKey = HttpMockServer.GetVariable("CreatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); - var createAutorizationRuleParameter = new AuthorizationRule() - { - Rights = new List() { AccessRights.Listen, AccessRights.Send } - }; + // Get the created namespace + var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Create Eventhub + var eventhubName = EventHubManagementHelper.EventHubPrefix; + var createEventhubResponse = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubName, + new Eventhub() { MessageRetentionInDays = 5 }); + + Assert.NotNull(createEventhubResponse); + Assert.Equal(createEventhubResponse.Name, eventhubName); + + // Get the created EventHub + var geteventhubResponse = EventHubManagementClient.EventHubs.Get(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(geteventhubResponse); + Assert.Equal(EntityStatus.Active, geteventhubResponse.Status); + Assert.Equal(geteventhubResponse.Name, eventhubName); + + // Create a EventHub AuthorizationRule + var authorizationRuleName = EventHubManagementHelper.AuthorizationRulesPrefix; + string createPrimaryKey = HttpMockServer.GetVariable("CreatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); + var createAutorizationRuleParameter = new AuthorizationRule() + { + Rights = new List() { AccessRights.Listen, AccessRights.Send } + }; - var jsonStr = EventHubManagementHelper.ConvertObjectToJSon(createAutorizationRuleParameter); + var jsonStr = EventHubManagementHelper.ConvertObjectToJSon(createAutorizationRuleParameter); - var createEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, eventhubName, - authorizationRuleName, createAutorizationRuleParameter); - Assert.NotNull(createEventhubAuthorizationRuleResponse); - Assert.True(createEventhubAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(createEventhubAuthorizationRuleResponse.Rights, r => r == right); - } + var createEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, eventhubName, + authorizationRuleName, createAutorizationRuleParameter); + Assert.NotNull(createEventhubAuthorizationRuleResponse); + Assert.True(createEventhubAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(createEventhubAuthorizationRuleResponse.Rights, r => r == right); + } + + // Get created Eventhub AuthorizationRules + var getEventhubAuthorizationRulesResponse = EventHubManagementClient.EventHubs.GetAuthorizationRule(resourceGroup, namespaceName, eventhubName, authorizationRuleName); + Assert.NotNull(getEventhubAuthorizationRulesResponse); + Assert.True(getEventhubAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(getEventhubAuthorizationRulesResponse.Rights, r => r == right); + } + + // Get all Eventhub AuthorizationRules + var getAllNamespaceAuthorizationRulesResponse = EventHubManagementClient.EventHubs.ListAuthorizationRules(resourceGroup, namespaceName, eventhubName); + Assert.NotNull(getAllNamespaceAuthorizationRulesResponse); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Count() == 1); + Assert.Contains(getAllNamespaceAuthorizationRulesResponse, ns => ns.Name == authorizationRuleName); + + // Update Eventhub authorizationRule + string updatePrimaryKey = HttpMockServer.GetVariable("UpdatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); + AuthorizationRule updateEventhubAuthorizationRuleParameter = new AuthorizationRule(); + updateEventhubAuthorizationRuleParameter.Rights = new List() { AccessRights.Listen }; + + var updateEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.CreateOrUpdateAuthorizationRule(resourceGroup, + namespaceName, eventhubName, authorizationRuleName, updateEventhubAuthorizationRuleParameter); + + Assert.NotNull(updateEventhubAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, updateEventhubAuthorizationRuleResponse.Name); + Assert.True(updateEventhubAuthorizationRuleResponse.Rights.Count == updateEventhubAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateEventhubAuthorizationRuleParameter.Rights) + { + Assert.Contains(updateEventhubAuthorizationRuleResponse.Rights, r => r.Equals(right)); + } + + // Get the updated Eventhub AuthorizationRule + var getEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.GetAuthorizationRule(resourceGroup, namespaceName, eventhubName, + authorizationRuleName); + Assert.NotNull(getEventhubAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, getEventhubAuthorizationRuleResponse.Name); + Assert.True(getEventhubAuthorizationRuleResponse.Rights.Count == updateEventhubAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateEventhubAuthorizationRuleParameter.Rights) + { + Assert.Contains(getEventhubAuthorizationRuleResponse.Rights, r => r.Equals(right)); + } - // Get created Eventhub AuthorizationRules - var getEventhubAuthorizationRulesResponse = EventHubManagementClient.EventHubs.GetAuthorizationRule(resourceGroup, namespaceName, eventhubName, authorizationRuleName); - Assert.NotNull(getEventhubAuthorizationRulesResponse); - Assert.True(getEventhubAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(getEventhubAuthorizationRulesResponse.Rights, r => r == right); - } + // Get the connectionString to the Eventhub for a Authorization rule created + var listKeysResponse = EventHubManagementClient.EventHubs.ListKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName); + Assert.NotNull(listKeysResponse); + Assert.NotNull(listKeysResponse.PrimaryConnectionString); + Assert.NotNull(listKeysResponse.SecondaryConnectionString); - // Get all Eventhub AuthorizationRules - var getAllNamespaceAuthorizationRulesResponse = EventHubManagementClient.EventHubs.ListAuthorizationRules(resourceGroup, namespaceName, eventhubName); - Assert.NotNull(getAllNamespaceAuthorizationRulesResponse); - Assert.True(getAllNamespaceAuthorizationRulesResponse.Count() == 1); - Assert.Contains(getAllNamespaceAuthorizationRulesResponse, ns => ns.Name == authorizationRuleName); + //New connection string + var regenerateConnection_primary = EventHubManagementClient.EventHubs.RegenerateKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.PrimaryKey)); + Assert.NotNull(regenerateConnection_primary); + Assert.NotEqual(listKeysResponse.PrimaryConnectionString, regenerateConnection_primary.PrimaryConnectionString); + Assert.Equal(listKeysResponse.SecondaryConnectionString, regenerateConnection_primary.SecondaryConnectionString); - // Update Eventhub authorizationRule - string updatePrimaryKey = HttpMockServer.GetVariable("UpdatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); - AuthorizationRule updateEventhubAuthorizationRuleParameter = new AuthorizationRule(); - updateEventhubAuthorizationRuleParameter.Rights = new List() { AccessRights.Listen }; + var regenerateConnection_Secondary = EventHubManagementClient.EventHubs.RegenerateKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.SecondaryKey)); + Assert.NotNull(regenerateConnection_Secondary); + Assert.NotEqual(listKeysResponse.SecondaryConnectionString, regenerateConnection_Secondary.SecondaryConnectionString); + Assert.Equal(regenerateConnection_primary.PrimaryConnectionString, regenerateConnection_Secondary.PrimaryConnectionString); - var updateEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.CreateOrUpdateAuthorizationRule(resourceGroup, - namespaceName, eventhubName, authorizationRuleName, updateEventhubAuthorizationRuleParameter); + // Delete Eventhub authorizationRule + EventHubManagementClient.EventHubs.DeleteAuthorizationRule(resourceGroup, namespaceName, eventhubName, authorizationRuleName); - Assert.NotNull(updateEventhubAuthorizationRuleResponse); - Assert.Equal(authorizationRuleName, updateEventhubAuthorizationRuleResponse.Name); - Assert.True(updateEventhubAuthorizationRuleResponse.Rights.Count == updateEventhubAuthorizationRuleParameter.Rights.Count); - foreach (var right in updateEventhubAuthorizationRuleParameter.Rights) - { - Assert.Contains(updateEventhubAuthorizationRuleResponse.Rights, r => r.Equals(right)); - } + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Get the updated Eventhub AuthorizationRule - var getEventhubAuthorizationRuleResponse = EventHubManagementClient.EventHubs.GetAuthorizationRule(resourceGroup, namespaceName, eventhubName, - authorizationRuleName); - Assert.NotNull(getEventhubAuthorizationRuleResponse); - Assert.Equal(authorizationRuleName, getEventhubAuthorizationRuleResponse.Name); - Assert.True(getEventhubAuthorizationRuleResponse.Rights.Count == updateEventhubAuthorizationRuleParameter.Rights.Count); - foreach (var right in updateEventhubAuthorizationRuleParameter.Rights) + // Delete Eventhub and check for the NotFound exception + EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); + + // Delete namespace and check for the NotFound exception + EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + finally { - Assert.Contains(getEventhubAuthorizationRuleResponse.Rights, r => r.Equals(right)); + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); } - - // Get the connectionString to the Eventhub for a Authorization rule created - var listKeysResponse = EventHubManagementClient.EventHubs.ListKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName); - Assert.NotNull(listKeysResponse); - Assert.NotNull(listKeysResponse.PrimaryConnectionString); - Assert.NotNull(listKeysResponse.SecondaryConnectionString); - - //New connection string - var regenerateConnection_primary = EventHubManagementClient.EventHubs.RegenerateKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.PrimaryKey)); - Assert.NotNull(regenerateConnection_primary); - Assert.NotEqual(listKeysResponse.PrimaryConnectionString, regenerateConnection_primary.PrimaryConnectionString); - Assert.Equal(listKeysResponse.SecondaryConnectionString, regenerateConnection_primary.SecondaryConnectionString); - - var regenerateConnection_Secondary = EventHubManagementClient.EventHubs.RegenerateKeys(resourceGroup, namespaceName, eventhubName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.SecondaryKey)); - Assert.NotNull(regenerateConnection_Secondary); - Assert.NotEqual(listKeysResponse.SecondaryConnectionString, regenerateConnection_Secondary.SecondaryConnectionString); - Assert.Equal(regenerateConnection_primary.PrimaryConnectionString, regenerateConnection_Secondary.PrimaryConnectionString); - - // Delete Eventhub authorizationRule - EventHubManagementClient.EventHubs.DeleteAuthorizationRule(resourceGroup, namespaceName, eventhubName, authorizationRuleName); - - TestUtilities.Wait(TimeSpan.FromSeconds(5)); - - // Delete Eventhub and check for the NotFound exception - EventHubManagementClient.EventHubs.Delete(resourceGroup, namespaceName, eventhubName); - - // Delete namespace and check for the NotFound exception - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubskiptopTests.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubskiptopTests.cs index 922031d4fde7..15405a8d70b5 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubskiptopTests.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.EventHubskiptopTests.cs @@ -8,6 +8,7 @@ namespace EventHub.Tests.ScenarioTests using System.Collections.Generic; using System.Linq; using System.Net; + using System.Threading; using Microsoft.Azure.Management.EventHub; using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Rest.Azure; @@ -25,7 +26,7 @@ public void EventHubskiptop() var location = this.ResourceManagementClient.GetLocationFromProvider(); - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -34,7 +35,9 @@ public void EventHubskiptop() var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + try + { + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, new EHNamespace() { Location = location, @@ -50,55 +53,62 @@ public void EventHubskiptop() } }); - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Create a EventHub - var eventhubName = TestUtilities.GenerateName(EventHubManagementHelper.EventHubPrefix); + // Create a EventHub + var eventhubName = TestUtilities.GenerateName(EventHubManagementHelper.EventHubPrefix); - for (int ehCount = 0; ehCount < 10; ehCount++) - { - var eventhubNameLoop = eventhubName + "_" + ehCount.ToString(); - var createEventHubResponseForLoop = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubNameLoop, new Eventhub()); + for (int ehCount = 0; ehCount < 10; ehCount++) + { + var eventhubNameLoop = eventhubName + "_" + ehCount.ToString(); + var createEventHubResponseForLoop = this.EventHubManagementClient.EventHubs.CreateOrUpdate(resourceGroup, namespaceName, eventhubNameLoop, new Eventhub()); - Assert.NotNull(createEventHubResponseForLoop); - Assert.Equal(createEventHubResponseForLoop.Name, eventhubNameLoop); - } + Assert.NotNull(createEventHubResponseForLoop); + Assert.Equal(createEventHubResponseForLoop.Name, eventhubNameLoop); + } - var createEventHubResponseList = this.EventHubManagementClient.EventHubs.ListByNamespace(resourceGroup, namespaceName); + var createEventHubResponseList = this.EventHubManagementClient.EventHubs.ListByNamespace(resourceGroup, namespaceName); - Assert.Equal(10, createEventHubResponseList.Count()); + Assert.Equal(10, createEventHubResponseList.Count()); - var gettop10EventHub = this.EventHubManagementClient.EventHubs.ListByNamespace(resourceGroup, namespaceName, skip: 5, top: 5); + var gettop10EventHub = this.EventHubManagementClient.EventHubs.ListByNamespace(resourceGroup, namespaceName, skip: 5, top: 5); - Assert.Equal(5, gettop10EventHub.Count()); + Assert.Equal(5, gettop10EventHub.Count()); - // Create a ConsumerGroup - var consumergroupName = TestUtilities.GenerateName(EventHubManagementHelper.ConsumerGroupPrefix); + // Create a ConsumerGroup + var consumergroupName = TestUtilities.GenerateName(EventHubManagementHelper.ConsumerGroupPrefix); - for (int consumergroupCount = 0; consumergroupCount < 10; consumergroupCount++) - { - var consumergroupNameLoop = consumergroupName + "_" + consumergroupCount.ToString(); - var createConsumerGroupResponseForLoop = this.EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, createEventHubResponseList.ElementAt(0).Name, consumergroupNameLoop, new ConsumerGroup()); + for (int consumergroupCount = 0; consumergroupCount < 10; consumergroupCount++) + { + var consumergroupNameLoop = consumergroupName + "_" + consumergroupCount.ToString(); + var createConsumerGroupResponseForLoop = this.EventHubManagementClient.ConsumerGroups.CreateOrUpdate(resourceGroup, namespaceName, createEventHubResponseList.ElementAt(0).Name, consumergroupNameLoop, new ConsumerGroup()); - Assert.NotNull(createConsumerGroupResponseForLoop); - Assert.Equal(createConsumerGroupResponseForLoop.Name, consumergroupNameLoop); - } + Assert.NotNull(createConsumerGroupResponseForLoop); + Assert.Equal(createConsumerGroupResponseForLoop.Name, consumergroupNameLoop); + } + + var createConsumerGroupResponseList = this.EventHubManagementClient.ConsumerGroups.ListByEventHub(resourceGroup, namespaceName, createEventHubResponseList.ElementAt(0).Name); - var createConsumerGroupResponseList = this.EventHubManagementClient.ConsumerGroups.ListByEventHub(resourceGroup, namespaceName, createEventHubResponseList.ElementAt(0).Name); + Assert.Equal(11, createConsumerGroupResponseList.Count()); - Assert.Equal(11, createConsumerGroupResponseList.Count()); + var gettop10ConsumerGroup = this.EventHubManagementClient.ConsumerGroups.ListByEventHub(resourceGroup, namespaceName, createEventHubResponseList.ElementAt(0).Name, skip: 5, top: 4); - var gettop10ConsumerGroup = this.EventHubManagementClient.ConsumerGroups.ListByEventHub(resourceGroup, namespaceName, createEventHubResponseList.ElementAt(0).Name, skip: 5, top: 4); + Assert.Equal(4, gettop10ConsumerGroup.Count()); - Assert.Equal(4, gettop10ConsumerGroup.Count()); - - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Delete namespace and check for the NotFound exception - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + // Delete namespace and check for the NotFound exception + EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + finally + { + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); + } } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceBYOKTests.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceBYOKTests.CRUD.cs new file mode 100644 index 000000000000..6df1c55ce64c --- /dev/null +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceBYOKTests.CRUD.cs @@ -0,0 +1,140 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for license information. + + +namespace EventHub.Tests.ScenarioTests +{ + using System; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Threading; + using Microsoft.Azure.Management.EventHub; + using Microsoft.Azure.Management.EventHub.Models; + using Microsoft.Azure.Management.KeyVault; + using Microsoft.Azure.Management.KeyVault.Models; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using TestHelper; + using Xunit; + public partial class ScenarioTests + { + [Fact] + public void NamespaceBYOKCreateGetUpdateDelete() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + InitializeClients(context); + + var location = "West US"; + + var resourceGroup = string.Empty; + + var resourceGroupCluster = EventHubManagementHelper.ResourceGroupCluster; + + var testClusterName = EventHubManagementHelper.TestClusterName; + + var keyVaultName = "SDKTestingKey"; + var KeyName = "sdktestingkey1"; + + if (string.IsNullOrWhiteSpace(resourceGroup)) + { + resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); + this.ResourceManagementClient.TryRegisterResourceGroup(location, resourceGroup); + } + + var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); + + try + { + + Cluster getClusterResponse = EventHubManagementClient.Clusters.Get(resourceGroupCluster, testClusterName); + + var checkNameAvailable = EventHubManagementClient.Namespaces.CheckNameAvailability(new CheckNameAvailabilityParameter() { Name = namespaceName }); + + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroupCluster, namespaceName, + new EHNamespace() + { + Location = location, + Sku = new Microsoft.Azure.Management.EventHub.Models.Sku + { + Name = Microsoft.Azure.Management.EventHub.Models.SkuName.Standard, + Tier = SkuTier.Standard + }, + Tags = new Dictionary() + { + {"tag1", "value1"}, + {"tag2", "value2"} + }, + IsAutoInflateEnabled = false, + MaximumThroughputUnits = 0, + ClusterArmId = getClusterResponse.Id, + Identity = new Identity() { Type = IdentityType.SystemAssigned} + }); + + Assert.NotNull(createNamespaceResponse); + Assert.Equal(namespaceName, createNamespaceResponse.Name); + Assert.Equal(getClusterResponse.Id, createNamespaceResponse.ClusterArmId); + Assert.False(createNamespaceResponse.IsAutoInflateEnabled); + Assert.Equal(0, createNamespaceResponse.MaximumThroughputUnits); + + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Create KeyVault + Microsoft.Azure.Management.KeyVault.Models.VaultCreateOrUpdateParameters vaultparams = new Microsoft.Azure.Management.KeyVault.Models.VaultCreateOrUpdateParameters(); + var accesPolicies = new Microsoft.Azure.Management.KeyVault.Models.AccessPolicyEntry() + { + ObjectId = createNamespaceResponse.Identity.PrincipalId, + TenantId = Guid.Parse(createNamespaceResponse.Identity.TenantId), + Permissions = new Microsoft.Azure.Management.KeyVault.Models.Permissions() + { + Keys = new List { "get", "wrapKey", "unwrapKey"} + } + }; + + + Vault getVaultRsponse = KeyVaultManagementClient.Vaults.Get(resourceGroupCluster, keyVaultName); + + vaultparams = new VaultCreateOrUpdateParameters(getVaultRsponse.Location, getVaultRsponse.Properties); + + vaultparams.Properties.AccessPolicies.Add(accesPolicies); + + var updateVault = KeyVaultManagementClient.Vaults.CreateOrUpdate(resourceGroupCluster, keyVaultName, vaultparams); + + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + // Encrypt data in Event Hub namespace Customer managed key from keyvault + + var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroupCluster, namespaceName); + + getNamespaceResponse.Encryption = new Encryption() { + KeySource = KeySource.MicrosoftKeyVault, + KeyVaultProperties = new[] { + new KeyVaultProperties() + { + KeyName = KeyName, + KeyVaultUri = updateVault.Properties.VaultUri, + KeyVersion = "" + } + } + }; + + var updateNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroupCluster, namespaceName, getNamespaceResponse); + + Vault getVaultRsponse1 = KeyVaultManagementClient.Vaults.Get(resourceGroupCluster, keyVaultName); + vaultparams = new VaultCreateOrUpdateParameters(getVaultRsponse.Location, getVaultRsponse.Properties); + vaultparams.Properties.AccessPolicies.Remove(accesPolicies); + var updateVault1 = KeyVaultManagementClient.Vaults.CreateOrUpdate(resourceGroupCluster, keyVaultName, vaultparams); + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + //Delete the namesapce within the cluster + } + finally + { + //Delete Resource Group + this.EventHubManagementClient.Namespaces.DeleteAsync(resourceGroupCluster, namespaceName, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); + } + + } + } + } +} diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceKafkaTests.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceKafkaTests.CRUD.cs index 56609465c825..0201c73ff2f8 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceKafkaTests.CRUD.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceKafkaTests.CRUD.cs @@ -7,6 +7,7 @@ namespace EventHub.Tests.ScenarioTests using System; using System.Collections.Generic; using System.Linq; + using System.Threading; using Microsoft.Azure.Management.EventHub; using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; @@ -23,7 +24,7 @@ public void NamespaceKafkaCreateGetUpdateDelete() var location = "West US"; // Kafka is enabled in few regions and West US is one the region so hardcodded, will remove the KAfka is available in all regions. - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -32,89 +33,98 @@ public void NamespaceKafkaCreateGetUpdateDelete() var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var operationsResponse = EventHubManagementClient.Operations.List(); + try + { + var operationsResponse = EventHubManagementClient.Operations.List(); - var checkNameAvailable = EventHubManagementClient.Namespaces.CheckNameAvailability(new CheckNameAvailabilityParameter() { Name = namespaceName }); + var checkNameAvailable = EventHubManagementClient.Namespaces.CheckNameAvailability(new CheckNameAvailabilityParameter() { Name = namespaceName }); - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, - new EHNamespace() - { - Location = location, - Sku = new Sku - { - Name = SkuName.Standard, - Tier = SkuTier.Standard - }, - Tags = new Dictionary() + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new EHNamespace() { + Location = location, + Sku = new Sku + { + Name = SkuName.Standard, + Tier = SkuTier.Standard + }, + Tags = new Dictionary() + { {"tag1", "value1"}, {"tag2", "value2"} - }, - IsAutoInflateEnabled = true, - MaximumThroughputUnits = 10, - KafkaEnabled = true - }); - - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); - Assert.True(createNamespaceResponse.KafkaEnabled, "KafkaEnabled is false"); + }, + IsAutoInflateEnabled = true, + MaximumThroughputUnits = 10, + KafkaEnabled = true + }); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); + Assert.True(createNamespaceResponse.KafkaEnabled, "KafkaEnabled is false"); - // Get the created namespace - var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) TestUtilities.Wait(TimeSpan.FromSeconds(5)); - getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - Assert.NotNull(getNamespaceResponse); - Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); - Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); - - // Get all namespaces created within a resourceGroup - var getAllNamespacesResponse = EventHubManagementClient.Namespaces.ListByResourceGroupAsync(resourceGroup).Result; - Assert.NotNull(getAllNamespacesResponse); - Assert.True(getAllNamespacesResponse.Count() >= 1); - Assert.Contains(getAllNamespacesResponse, ns => ns.Name == namespaceName); - Assert.Contains(getAllNamespacesResponse, ns => ns.Id.Contains(resourceGroup)); - - // Get all namespaces created within the subscription irrespective of the resourceGroup - getAllNamespacesResponse = EventHubManagementClient.Namespaces.List(); - Assert.NotNull(getAllNamespacesResponse); - Assert.True(getAllNamespacesResponse.Count() >= 1); - Assert.Contains(getAllNamespacesResponse, ns => ns.Name == namespaceName); - - // Update namespace tags and make the namespace critical - var updateNamespaceParameter = new EHNamespace() - { - Tags = new Dictionary() + // Get the created namespace + var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Get all namespaces created within a resourceGroup + var getAllNamespacesResponse = EventHubManagementClient.Namespaces.ListByResourceGroupAsync(resourceGroup).Result; + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.Contains(getAllNamespacesResponse, ns => ns.Name == namespaceName); + Assert.Contains(getAllNamespacesResponse, ns => ns.Id.Contains(resourceGroup)); + + // Get all namespaces created within the subscription irrespective of the resourceGroup + getAllNamespacesResponse = EventHubManagementClient.Namespaces.List(); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.Contains(getAllNamespacesResponse, ns => ns.Name == namespaceName); + + // Update namespace tags and make the namespace critical + var updateNamespaceParameter = new EHNamespace() + { + Tags = new Dictionary() { {"tag3", "value3"}, {"tag4", "value4"} } - }; - - // Will uncomment the assertions once the service is deployed - var updateNamespaceResponse = EventHubManagementClient.Namespaces.Update(resourceGroup, namespaceName, updateNamespaceParameter); - Assert.NotNull(updateNamespaceResponse); - Assert.True(updateNamespaceResponse.ProvisioningState.Equals("Active", StringComparison.CurrentCultureIgnoreCase) || - updateNamespaceResponse.ProvisioningState.Equals("Updating", StringComparison.CurrentCultureIgnoreCase)); - Assert.Equal(namespaceName, updateNamespaceResponse.Name); - - // Get the updated namespace and also verify the Tags. - getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - Assert.NotNull(getNamespaceResponse); - Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); - Assert.Equal(namespaceName, getNamespaceResponse.Name); - Assert.Equal(2,getNamespaceResponse.Tags.Count); - foreach (var tag in updateNamespaceParameter.Tags) + }; + + // Will uncomment the assertions once the service is deployed + var updateNamespaceResponse = EventHubManagementClient.Namespaces.Update(resourceGroup, namespaceName, updateNamespaceParameter); + Assert.NotNull(updateNamespaceResponse); + Assert.True(updateNamespaceResponse.ProvisioningState.Equals("Active", StringComparison.CurrentCultureIgnoreCase) || + updateNamespaceResponse.ProvisioningState.Equals("Updating", StringComparison.CurrentCultureIgnoreCase)); + Assert.Equal(namespaceName, updateNamespaceResponse.Name); + + // Get the updated namespace and also verify the Tags. + getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(namespaceName, getNamespaceResponse.Name); + Assert.Equal(2, getNamespaceResponse.Tags.Count); + foreach (var tag in updateNamespaceParameter.Tags) + { + Assert.Contains(getNamespaceResponse.Tags, t => t.Key.Equals(tag.Key)); + Assert.Contains(getNamespaceResponse.Tags, t => t.Value.Equals(tag.Value)); + } + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + // Delete namespace + EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + finally { - Assert.Contains(getNamespaceResponse.Tags, t => t.Key.Equals(tag.Key)); - Assert.Contains(getNamespaceResponse.Tags, t => t.Value.Equals(tag.Value)); + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); } - TestUtilities.Wait(TimeSpan.FromSeconds(10)); - // Delete namespace - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceTests.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceTests.CRUD.cs index ec37e24929eb..0cef94021d80 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceTests.CRUD.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceTests.CRUD.cs @@ -7,6 +7,8 @@ namespace EventHub.Tests.ScenarioTests using System; using System.Collections.Generic; using System.Linq; + using System.Net; + using System.Threading; using Microsoft.Azure.Management.EventHub; using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; @@ -23,7 +25,7 @@ public void NamespaceCreateGetUpdateDelete() var location = this.ResourceManagementClient.GetLocationFromProvider(); - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -32,85 +34,97 @@ public void NamespaceCreateGetUpdateDelete() var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var operationsResponse = EventHubManagementClient.Operations.List(); + try + { - var checkNameAvailable = EventHubManagementClient.Namespaces.CheckNameAvailability(new CheckNameAvailabilityParameter() { Name = namespaceName }); + var operationsResponse = EventHubManagementClient.Operations.List(); - var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, - new EHNamespace() - { - Location = location, - Sku = new Sku - { - Name = SkuName.Standard, - Tier = SkuTier.Standard - }, - Tags = new Dictionary() + var checkNameAvailable = EventHubManagementClient.Namespaces.CheckNameAvailability(new CheckNameAvailabilityParameter() { Name = namespaceName }); + + var createNamespaceResponse = this.EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new EHNamespace() { + Location = location, + Sku = new Sku + { + Name = SkuName.Standard, + Tier = SkuTier.Standard + }, + Tags = new Dictionary() + { {"tag1", "value1"}, {"tag2", "value2"} - }, - IsAutoInflateEnabled = true, - MaximumThroughputUnits = 10 - }); + }, + IsAutoInflateEnabled = true, + MaximumThroughputUnits = 10 - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); + }); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); - // Get the created namespace - var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) TestUtilities.Wait(TimeSpan.FromSeconds(5)); - getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - Assert.NotNull(getNamespaceResponse); - Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); - Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); - - // Get all namespaces created within a resourceGroup - var getAllNamespacesResponse = EventHubManagementClient.Namespaces.ListByResourceGroupAsync(resourceGroup).Result; - Assert.NotNull(getAllNamespacesResponse); - Assert.True(getAllNamespacesResponse.Count() >= 1); - Assert.Contains(getAllNamespacesResponse, ns => ns.Name == namespaceName); - Assert.Contains(getAllNamespacesResponse, ns => ns.Id.Contains(resourceGroup)); - - // Get all namespaces created within the subscription irrespective of the resourceGroup - getAllNamespacesResponse = EventHubManagementClient.Namespaces.List(); - Assert.NotNull(getAllNamespacesResponse); - Assert.True(getAllNamespacesResponse.Count() >= 1); - Assert.Contains(getAllNamespacesResponse, ns => ns.Name == namespaceName); - - // Update namespace tags and make the namespace critical - var updateNamespaceParameter = new EHNamespace() - { - Tags = new Dictionary() + // Get the created namespace + var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + + getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + + // Get all namespaces created within a resourceGroup + var getAllNamespacesResponse = EventHubManagementClient.Namespaces.ListByResourceGroupAsync(resourceGroup).Result; + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.Contains(getAllNamespacesResponse, ns => ns.Name == namespaceName); + Assert.Contains(getAllNamespacesResponse, ns => ns.Id.Contains(resourceGroup)); + + // Get all namespaces created within the subscription irrespective of the resourceGroup + getAllNamespacesResponse = EventHubManagementClient.Namespaces.List(); + Assert.NotNull(getAllNamespacesResponse); + Assert.True(getAllNamespacesResponse.Count() >= 1); + Assert.Contains(getAllNamespacesResponse, ns => ns.Name == namespaceName); + + // Update namespace tags and make the namespace critical + var updateNamespaceParameter = new EHNamespace() + { + Tags = new Dictionary() { {"tag3", "value3"}, {"tag4", "value4"} } - }; - - // Will uncomment the assertions once the service is deployed - var updateNamespaceResponse = EventHubManagementClient.Namespaces.Update(resourceGroup, namespaceName, updateNamespaceParameter); - Assert.NotNull(updateNamespaceResponse); - Assert.Equal(namespaceName, updateNamespaceResponse.Name); - - // Get the updated namespace and also verify the Tags. - getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - Assert.NotNull(getNamespaceResponse); - Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); - Assert.Equal(namespaceName, getNamespaceResponse.Name); - Assert.Equal(2,getNamespaceResponse.Tags.Count); - foreach (var tag in updateNamespaceParameter.Tags) + }; + + // Will uncomment the assertions once the service is deployed + var updateNamespaceResponse = EventHubManagementClient.Namespaces.Update(resourceGroup, namespaceName, updateNamespaceParameter); + Assert.NotNull(updateNamespaceResponse); + Assert.Equal(namespaceName, updateNamespaceResponse.Name); + + // Get the updated namespace and also verify the Tags. + getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(namespaceName, getNamespaceResponse.Name); + Assert.Equal(2, getNamespaceResponse.Tags.Count); + foreach (var tag in updateNamespaceParameter.Tags) + { + Assert.Contains(getNamespaceResponse.Tags, t => t.Key.Equals(tag.Key)); + Assert.Contains(getNamespaceResponse.Tags, t => t.Value.Equals(tag.Value)); + } + TestUtilities.Wait(TimeSpan.FromSeconds(10)); + // Delete namespace + EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + finally { - Assert.Contains(getNamespaceResponse.Tags, t => t.Key.Equals(tag.Key)); - Assert.Contains(getNamespaceResponse.Tags, t => t.Value.Equals(tag.Value)); + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); } - TestUtilities.Wait(TimeSpan.FromSeconds(10)); - // Delete namespace - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceTests.CRUDAuthorizationRules.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceTests.CRUDAuthorizationRules.cs index c971fe01bedf..bfb37508af0c 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceTests.CRUDAuthorizationRules.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NamespaceTests.CRUDAuthorizationRules.cs @@ -8,6 +8,7 @@ namespace EventHub.Tests.ScenarioTests using System.Collections.Generic; using System.Linq; using System.Net; + using System.Threading; using Microsoft.Azure.Management.EventHub; using Microsoft.Azure.Management.EventHub.Models; using Microsoft.Azure.Test.HttpRecorder; @@ -26,7 +27,7 @@ public void NamespaceCreateGetUpdateDeleteAuthorizationRules() var location = this.ResourceManagementClient.GetLocationFromProvider(); - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -36,135 +37,143 @@ public void NamespaceCreateGetUpdateDeleteAuthorizationRules() // Create a namespace var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var nameAvailable = EventHubManagementClient.Namespaces.CheckNameAvailability(new CheckNameAvailabilityParameter(namespaceName)); + try + { + var nameAvailable = EventHubManagementClient.Namespaces.CheckNameAvailability(new CheckNameAvailabilityParameter(namespaceName)); - var createNamespaceResponse = EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, - new EHNamespace() - { - Location = location, - Sku = new Sku - { - Name = SkuName.Standard, - Tier = SkuTier.Standard - }, - Tags = new Dictionary() + var createNamespaceResponse = EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + new EHNamespace() { + Location = location, + Sku = new Sku + { + Name = SkuName.Standard, + Tier = SkuTier.Standard + }, + Tags = new Dictionary() + { {"tag1", "value1"}, {"tag2", "value2"} - } - }); - - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); + } + }); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); - // Get the created namespace - var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) TestUtilities.Wait(TimeSpan.FromSeconds(5)); - getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - Assert.NotNull(getNamespaceResponse); - Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); - Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + // Get the created namespace + var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Create a namespace AuthorizationRule - var authorizationRuleName = TestUtilities.GenerateName(EventHubManagementHelper.AuthorizationRulesPrefix); - string createPrimaryKey = HttpMockServer.GetVariable("CreatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); - var createAutorizationRuleParameter = new AuthorizationRule() - { - Rights = new List() { AccessRights.Listen, AccessRights.Send } - }; + getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); - var jsonStr = EventHubManagementHelper.ConvertObjectToJSon(createAutorizationRuleParameter); + // Create a namespace AuthorizationRule + var authorizationRuleName = TestUtilities.GenerateName(EventHubManagementHelper.AuthorizationRulesPrefix); + string createPrimaryKey = HttpMockServer.GetVariable("CreatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); + var createAutorizationRuleParameter = new AuthorizationRule() + { + Rights = new List() { AccessRights.Listen, AccessRights.Send } + }; - var createNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, - authorizationRuleName, createAutorizationRuleParameter); - Assert.NotNull(createNamespaceAuthorizationRuleResponse); - Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(createNamespaceAuthorizationRuleResponse.Rights, r => r == right); - } + var jsonStr = EventHubManagementHelper.ConvertObjectToJSon(createAutorizationRuleParameter); - // Get default namespace AuthorizationRules - var getNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, EventHubManagementHelper.DefaultNamespaceAuthorizationRule); - Assert.NotNull(getNamespaceAuthorizationRulesResponse); - Assert.Equal(getNamespaceAuthorizationRulesResponse.Name, EventHubManagementHelper.DefaultNamespaceAuthorizationRule); - Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == AccessRights.Listen); - Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == AccessRights.Send); - Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == AccessRights.Manage); - - // Get created namespace AuthorizationRules - getNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); - Assert.NotNull(getNamespaceAuthorizationRulesResponse); - Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); - foreach (var right in createAutorizationRuleParameter.Rights) - { - Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == right); - } + var createNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, namespaceName, + authorizationRuleName, createAutorizationRuleParameter); + Assert.NotNull(createNamespaceAuthorizationRuleResponse); + Assert.True(createNamespaceAuthorizationRuleResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(createNamespaceAuthorizationRuleResponse.Rights, r => r == right); + } + + // Get default namespace AuthorizationRules + var getNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, EventHubManagementHelper.DefaultNamespaceAuthorizationRule); + Assert.NotNull(getNamespaceAuthorizationRulesResponse); + Assert.Equal(getNamespaceAuthorizationRulesResponse.Name, EventHubManagementHelper.DefaultNamespaceAuthorizationRule); + Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == AccessRights.Listen); + Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == AccessRights.Send); + Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == AccessRights.Manage); + + // Get created namespace AuthorizationRules + getNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRulesResponse); + Assert.True(getNamespaceAuthorizationRulesResponse.Rights.Count == createAutorizationRuleParameter.Rights.Count); + foreach (var right in createAutorizationRuleParameter.Rights) + { + Assert.Contains(getNamespaceAuthorizationRulesResponse.Rights, r => r == right); + } + + // Get all namespaces AuthorizationRules + var getAllNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.ListAuthorizationRules(resourceGroup, namespaceName); + Assert.NotNull(getAllNamespaceAuthorizationRulesResponse); + Assert.True(getAllNamespaceAuthorizationRulesResponse.Count() > 1); + Assert.Contains(getAllNamespaceAuthorizationRulesResponse, ns => ns.Name == authorizationRuleName); + Assert.Contains(getAllNamespaceAuthorizationRulesResponse, auth => auth.Name == EventHubManagementHelper.DefaultNamespaceAuthorizationRule); + + // Update namespace authorizationRule + string updatePrimaryKey = HttpMockServer.GetVariable("UpdatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); + AuthorizationRule updateNamespaceAuthorizationRuleParameter = new AuthorizationRule(); + updateNamespaceAuthorizationRuleParameter.Rights = new List() { AccessRights.Listen }; + + var updateNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, + namespaceName, authorizationRuleName, updateNamespaceAuthorizationRuleParameter); + + Assert.NotNull(updateNamespaceAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, updateNamespaceAuthorizationRuleResponse.Name); + Assert.True(updateNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) + { + Assert.Contains(updateNamespaceAuthorizationRuleResponse.Rights, r => r.Equals(right)); + } + + // Get the updated namespace AuthorizationRule + var getNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, + authorizationRuleName); + Assert.NotNull(getNamespaceAuthorizationRuleResponse); + Assert.Equal(authorizationRuleName, getNamespaceAuthorizationRuleResponse.Name); + Assert.True(getNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); + foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) + { + Assert.Contains(getNamespaceAuthorizationRuleResponse.Rights, r => r.Equals(right)); + } + + // Get the connection string to the namespace for a Authorization rule created + var listKeysResponse = EventHubManagementClient.Namespaces.ListKeys(resourceGroup, namespaceName, authorizationRuleName); + Assert.NotNull(listKeysResponse); + Assert.NotNull(listKeysResponse.PrimaryConnectionString); + Assert.NotNull(listKeysResponse.SecondaryConnectionString); + + // Regenerate connection string to the namespace for a Authorization rule created + var NewKeysResponse_primary = EventHubManagementClient.Namespaces.RegenerateKeys(resourceGroup, namespaceName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.PrimaryKey)); + Assert.NotNull(NewKeysResponse_primary); + Assert.NotEqual(NewKeysResponse_primary.PrimaryConnectionString, listKeysResponse.PrimaryConnectionString); + Assert.Equal(NewKeysResponse_primary.SecondaryConnectionString, listKeysResponse.SecondaryConnectionString); + + // Regenerate connection string to the namespace for a Authorization rule created + var NewKeysResponse_secondary = EventHubManagementClient.Namespaces.RegenerateKeys(resourceGroup, namespaceName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.SecondaryKey)); + Assert.NotNull(NewKeysResponse_secondary); + Assert.NotEqual(NewKeysResponse_secondary.PrimaryConnectionString, listKeysResponse.PrimaryConnectionString); + Assert.NotEqual(NewKeysResponse_secondary.SecondaryConnectionString, listKeysResponse.SecondaryConnectionString); + + // Delete namespace authorizationRule + EventHubManagementClient.Namespaces.DeleteAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); - // Get all namespaces AuthorizationRules - var getAllNamespaceAuthorizationRulesResponse = EventHubManagementClient.Namespaces.ListAuthorizationRules(resourceGroup, namespaceName); - Assert.NotNull(getAllNamespaceAuthorizationRulesResponse); - Assert.True(getAllNamespaceAuthorizationRulesResponse.Count() > 1); - Assert.Contains(getAllNamespaceAuthorizationRulesResponse, ns => ns.Name == authorizationRuleName); - Assert.Contains(getAllNamespaceAuthorizationRulesResponse, auth => auth.Name == EventHubManagementHelper.DefaultNamespaceAuthorizationRule); - - // Update namespace authorizationRule - string updatePrimaryKey = HttpMockServer.GetVariable("UpdatePrimaryKey", EventHubManagementHelper.GenerateRandomKey()); - AuthorizationRule updateNamespaceAuthorizationRuleParameter = new AuthorizationRule(); - updateNamespaceAuthorizationRuleParameter.Rights = new List() { AccessRights.Listen }; - - var updateNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.CreateOrUpdateAuthorizationRule(resourceGroup, - namespaceName, authorizationRuleName, updateNamespaceAuthorizationRuleParameter); - - Assert.NotNull(updateNamespaceAuthorizationRuleResponse); - Assert.Equal(authorizationRuleName, updateNamespaceAuthorizationRuleResponse.Name); - Assert.True(updateNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); - foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) - { - Assert.Contains(updateNamespaceAuthorizationRuleResponse.Rights, r => r.Equals(right)); - } + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - // Get the updated namespace AuthorizationRule - var getNamespaceAuthorizationRuleResponse = EventHubManagementClient.Namespaces.GetAuthorizationRule(resourceGroup, namespaceName, - authorizationRuleName); - Assert.NotNull(getNamespaceAuthorizationRuleResponse); - Assert.Equal(authorizationRuleName, getNamespaceAuthorizationRuleResponse.Name); - Assert.True(getNamespaceAuthorizationRuleResponse.Rights.Count == updateNamespaceAuthorizationRuleParameter.Rights.Count); - foreach (var right in updateNamespaceAuthorizationRuleParameter.Rights) + // Delete namespace + EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); + } + finally { - Assert.Contains(getNamespaceAuthorizationRuleResponse.Rights, r => r.Equals(right)); + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); } - - // Get the connection string to the namespace for a Authorization rule created - var listKeysResponse = EventHubManagementClient.Namespaces.ListKeys(resourceGroup, namespaceName, authorizationRuleName); - Assert.NotNull(listKeysResponse); - Assert.NotNull(listKeysResponse.PrimaryConnectionString); - Assert.NotNull(listKeysResponse.SecondaryConnectionString); - - // Regenerate connection string to the namespace for a Authorization rule created - var NewKeysResponse_primary = EventHubManagementClient.Namespaces.RegenerateKeys(resourceGroup, namespaceName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.PrimaryKey)); - Assert.NotNull(NewKeysResponse_primary); - Assert.NotEqual(NewKeysResponse_primary.PrimaryConnectionString, listKeysResponse.PrimaryConnectionString); - Assert.Equal(NewKeysResponse_primary.SecondaryConnectionString, listKeysResponse.SecondaryConnectionString); - - // Regenerate connection string to the namespace for a Authorization rule created - var NewKeysResponse_secondary = EventHubManagementClient.Namespaces.RegenerateKeys(resourceGroup, namespaceName, authorizationRuleName, new RegenerateAccessKeyParameters(KeyType.SecondaryKey)); - Assert.NotNull(NewKeysResponse_secondary); - Assert.NotEqual(NewKeysResponse_secondary.PrimaryConnectionString, listKeysResponse.PrimaryConnectionString); - Assert.NotEqual(NewKeysResponse_secondary.SecondaryConnectionString, listKeysResponse.SecondaryConnectionString); - - // Delete namespace authorizationRule - EventHubManagementClient.Namespaces.DeleteAuthorizationRule(resourceGroup, namespaceName, authorizationRuleName); - - TestUtilities.Wait(TimeSpan.FromSeconds(5)); - - // Delete namespace - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); - } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NetworkRuleSetTests.CRUD.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NetworkRuleSetTests.CRUD.cs index 706374b0a73b..7cad7d625173 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NetworkRuleSetTests.CRUD.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.NetworkRuleSetTests.CRUD.cs @@ -25,7 +25,7 @@ public void NetworkRuleSetCreateGetUpdateDelete() var location = this.ResourceManagementClient.GetLocationFromProvider(); - var resourceGroup = this.ResourceManagementClient.TryGetResourceGroup(location); + var resourceGroup = string.Empty; if (string.IsNullOrWhiteSpace(resourceGroup)) { resourceGroup = TestUtilities.GenerateName(EventHubManagementHelper.ResourceGroupPrefix); @@ -36,7 +36,9 @@ public void NetworkRuleSetCreateGetUpdateDelete() //Create a namespace var namespaceName = TestUtilities.GenerateName(EventHubManagementHelper.NamespacePrefix); - var createNamespaceResponse = EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, + try + { + var createNamespaceResponse = EventHubManagementClient.Namespaces.CreateOrUpdate(resourceGroup, namespaceName, new EHNamespace() { Location = location, @@ -52,49 +54,54 @@ public void NetworkRuleSetCreateGetUpdateDelete() } }); - Assert.NotNull(createNamespaceResponse); - Assert.Equal(createNamespaceResponse.Name, namespaceName); - - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + Assert.NotNull(createNamespaceResponse); + Assert.Equal(createNamespaceResponse.Name, namespaceName); - //Get the created namespace - var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) TestUtilities.Wait(TimeSpan.FromSeconds(5)); - getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); - Assert.NotNull(getNamespaceResponse); - Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); - Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); + //Get the created namespace + var getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + if (string.Compare(getNamespaceResponse.ProvisioningState, "Succeeded", true) != 0) + TestUtilities.Wait(TimeSpan.FromSeconds(5)); - //Create Namepsace IPRules + getNamespaceResponse = EventHubManagementClient.Namespaces.Get(resourceGroup, namespaceName); + Assert.NotNull(getNamespaceResponse); + Assert.Equal("Succeeded", getNamespaceResponse.ProvisioningState, StringComparer.CurrentCultureIgnoreCase); + Assert.Equal(location, getNamespaceResponse.Location, StringComparer.CurrentCultureIgnoreCase); - List IPRules = new List(); + //Create Namepsace IPRules - IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.1", Action = NetworkRuleIPAction.Allow }); - IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.2", Action = NetworkRuleIPAction.Allow }); - IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.3", Action = NetworkRuleIPAction.Allow }); - IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.4", Action = NetworkRuleIPAction.Allow }); - IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.5", Action = NetworkRuleIPAction.Allow }); + List IPRules = new List(); - List VNetRules = new List(); + IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.1", Action = NetworkRuleIPAction.Allow }); + IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.2", Action = NetworkRuleIPAction.Allow }); + IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.3", Action = NetworkRuleIPAction.Allow }); + IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.4", Action = NetworkRuleIPAction.Allow }); + IPRules.Add(new NWRuleSetIpRules() { IpMask = "1.1.1.5", Action = NetworkRuleIPAction.Allow }); - VNetRules.Add(new NWRuleSetVirtualNetworkRules() { Subnet = new Subnet() { Id = @"/subscriptions/" + EventHubManagementClient.SubscriptionId + "/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default" }, IgnoreMissingVnetServiceEndpoint = true }); - VNetRules.Add(new NWRuleSetVirtualNetworkRules() { Subnet = new Subnet() { Id = @"/subscriptions/" + EventHubManagementClient.SubscriptionId + "/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault" }, IgnoreMissingVnetServiceEndpoint = false }); - VNetRules.Add(new NWRuleSetVirtualNetworkRules() { Subnet = new Subnet() { Id = @"/subscriptions/" + EventHubManagementClient.SubscriptionId + "/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01" }, IgnoreMissingVnetServiceEndpoint = false }); + List VNetRules = new List(); - var netWorkRuleSet = EventHubManagementClient.Namespaces.CreateOrUpdateNetworkRuleSet(resourceGroup, namespaceName, new NetworkRuleSet() { DefaultAction = DefaultAction.Deny, VirtualNetworkRules = VNetRules, IpRules = IPRules }); + VNetRules.Add(new NWRuleSetVirtualNetworkRules() { Subnet = new Subnet() { Id = @"/subscriptions/" + EventHubManagementClient.SubscriptionId + "/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default" }, IgnoreMissingVnetServiceEndpoint = true }); + VNetRules.Add(new NWRuleSetVirtualNetworkRules() { Subnet = new Subnet() { Id = @"/subscriptions/" + EventHubManagementClient.SubscriptionId + "/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault" }, IgnoreMissingVnetServiceEndpoint = false }); + VNetRules.Add(new NWRuleSetVirtualNetworkRules() { Subnet = new Subnet() { Id = @"/subscriptions/" + EventHubManagementClient.SubscriptionId + "/resourcegroups/v-ajnavtest/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/sbdefault01" }, IgnoreMissingVnetServiceEndpoint = false }); - var getNetworkRuleSet = EventHubManagementClient.Namespaces.GetNetworkRuleSet(resourceGroup, namespaceName); + var netWorkRuleSet = EventHubManagementClient.Namespaces.CreateOrUpdateNetworkRuleSet(resourceGroup, namespaceName, new NetworkRuleSet() { DefaultAction = DefaultAction.Deny, VirtualNetworkRules = VNetRules, IpRules = IPRules }); - var netWorkRuleSet1 = EventHubManagementClient.Namespaces.CreateOrUpdateNetworkRuleSet(resourceGroup, namespaceName, new NetworkRuleSet() { DefaultAction = "Allow" }); + var getNetworkRuleSet = EventHubManagementClient.Namespaces.GetNetworkRuleSet(resourceGroup, namespaceName); - var getNetworkRuleSet1 = EventHubManagementClient.Namespaces.GetNetworkRuleSet(resourceGroup, namespaceName); + var netWorkRuleSet1 = EventHubManagementClient.Namespaces.CreateOrUpdateNetworkRuleSet(resourceGroup, namespaceName, new NetworkRuleSet() { DefaultAction = "Allow" }); - TestUtilities.Wait(TimeSpan.FromSeconds(5)); + var getNetworkRuleSet1 = EventHubManagementClient.Namespaces.GetNetworkRuleSet(resourceGroup, namespaceName); + + TestUtilities.Wait(TimeSpan.FromSeconds(5)); + } + finally + { + //Delete Resource Group + this.ResourceManagementClient.ResourceGroups.DeleteWithHttpMessagesAsync(resourceGroup, null, default(CancellationToken)).ConfigureAwait(false); + Console.WriteLine("End of EH2018 Namespace CRUD IPFilter Rules test"); + } - //Delete namespace - EventHubManagementClient.Namespaces.Delete(resourceGroup, namespaceName); } } } diff --git a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.cs b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.cs index 74408b0a952b..31e8047b7078 100644 --- a/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.cs +++ b/sdk/eventhub/Microsoft.Azure.Management.EventHub/tests/Tests/ScenarioTests.cs @@ -6,6 +6,7 @@ namespace EventHub.Tests.ScenarioTests { using System.Net; using Microsoft.Azure.Management.EventHub; + using Microsoft.Azure.Management.KeyVault; using Microsoft.Azure.Management.Resources; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using TestHelper; @@ -14,6 +15,7 @@ public partial class ScenarioTests { private ResourceManagementClient _resourceManagementClient; private EventHubManagementClient _EventHubManagementClient; + private KeyVaultManagementClient _KeyVaultManagementClient; private RecordedDelegatingHandler handler = new RecordedDelegatingHandler(); protected bool m_initialized = false; @@ -33,6 +35,7 @@ protected void InitializeClients(MockContext context) { _resourceManagementClient = EventHubManagementHelper.GetResourceManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); _EventHubManagementClient = EventHubManagementHelper.GetEventHubManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + _KeyVaultManagementClient = EventHubManagementHelper.GetKeyVaultManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); } } } @@ -52,6 +55,14 @@ public EventHubManagementClient EventHubManagementClient { return _EventHubManagementClient; } - } + } + + public KeyVaultManagementClient KeyVaultManagementClient + { + get + { + return _KeyVaultManagementClient; + } + } } }